summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-03-25 09:43:51 -0400
committerTim Graham <timograham@gmail.com>2014-03-25 09:44:59 -0400
commite3c4205b79cff2be809c3698df2e9d53303b5070 (patch)
treea5f6ca146feee028a23caa3d1cf00694b35e473c /django
parent16afffffe87bf8b7de6403329937433ac5096697 (diff)
flake8 and doc fixes for refs #22257.
Diffstat (limited to 'django')
-rw-r--r--django/core/management/commands/dumpdata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/dumpdata.py b/django/core/management/commands/dumpdata.py
index 045bc96397..c54ccc1c58 100644
--- a/django/core/management/commands/dumpdata.py
+++ b/django/core/management/commands/dumpdata.py
@@ -36,7 +36,7 @@ class Command(BaseCommand):
help="Only dump objects with given primary keys. "
"Accepts a comma separated list of keys. "
"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 = ("Output the contents of the database as a fixture of the given "