summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/management/commands/dumpdata.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/django/core/management/commands/dumpdata.py b/django/core/management/commands/dumpdata.py
index 01b44a8282..2642ae925e 100644
--- a/django/core/management/commands/dumpdata.py
+++ b/django/core/management/commands/dumpdata.py
@@ -4,10 +4,9 @@ from django.core import serializers
from optparse import make_option
class Command(BaseCommand):
- serializer_formats = serializers.get_public_serializer_formats()
option_list = BaseCommand.option_list + (
make_option('--format', default='json', dest='format',
- help='Specifies the output serialization format for fixtures. Formats available: %s' % serializer_formats),
+ help='Specifies the output serialization format for fixtures.'),
make_option('--indent', default=None, dest='indent', type='int',
help='Specifies the indent level to use when pretty-printing output'),
)
@@ -28,7 +27,7 @@ class Command(BaseCommand):
# Check that the serialization format exists; this is a shortcut to
# avoid collating all the objects and _then_ failing.
- if format not in self.serializer_formats:
+ if format not in serializers.get_public_serializer_formats():
raise CommandError("Unknown serialization format: %s" % format)
try: