summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 6f74cbce27..88b2c8fd57 100644
--- a/django/core/management/commands/dumpdata.py
+++ b/django/core/management/commands/dumpdata.py
@@ -21,7 +21,7 @@ class Command(BaseCommand):
help='Use natural keys if they are available.'),
)
help = 'Output the contents of the database as a fixture of the given format.'
- args = '[appname ...]'
+ args = '[appname appname.ModelName ...]'
def handle(self, *app_labels, **options):
from django.db.models import get_app, get_apps, get_models, get_model