flake8 and doc fixes for refs #22257.
This commit is contained in:
parent
16afffffe8
commit
e3c4205b79
|
@ -36,7 +36,7 @@ class Command(BaseCommand):
|
||||||
help="Only dump objects with given primary keys. "
|
help="Only dump objects with given primary keys. "
|
||||||
"Accepts a comma separated list of keys. "
|
"Accepts a comma separated list of keys. "
|
||||||
"This option will only work when you specify one model."),
|
"This option will only work when you specify one model."),
|
||||||
make_option('-o' ,'--output', default=None, dest='output',
|
make_option('-o', '--output', default=None, dest='output',
|
||||||
help='Specifies file to which the output is written.'),
|
help='Specifies file to which the output is written.'),
|
||||||
)
|
)
|
||||||
help = ("Output the contents of the database as a fixture of the given "
|
help = ("Output the contents of the database as a fixture of the given "
|
||||||
|
|
|
@ -277,10 +277,10 @@ you can use the ``--pks`` option to specify a comma separated list of
|
||||||
primary keys on which to filter. This is only available when dumping
|
primary keys on which to filter. This is only available when dumping
|
||||||
one model.
|
one model.
|
||||||
|
|
||||||
.. versionadded:: 1.8
|
|
||||||
|
|
||||||
.. django-admin-option:: --output
|
.. django-admin-option:: --output
|
||||||
|
|
||||||
|
.. versionadded:: 1.8
|
||||||
|
|
||||||
By default ``dumpdata`` will output all the serialized data to standard output.
|
By default ``dumpdata`` will output all the serialized data to standard output.
|
||||||
This options allows to specify the file to which the data is to be written.
|
This options allows to specify the file to which the data is to be written.
|
||||||
|
|
||||||
|
|
|
@ -124,8 +124,8 @@ Internationalization
|
||||||
Management Commands
|
Management Commands
|
||||||
^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
* :djadmin:`dumpdata` now has the option ``--output`` which allows to specify the
|
* :djadmin:`dumpdata` now has the option :djadminopt:`--output` which allows
|
||||||
file to which the serialized data is to be written.
|
specifying the file to which the serialized data is written.
|
||||||
|
|
||||||
Models
|
Models
|
||||||
^^^^^^
|
^^^^^^
|
||||||
|
|
Loading…
Reference in New Issue