summaryrefslogtreecommitdiff
path: root/django/core/management/commands/dumpdata.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/core/management/commands/dumpdata.py')
-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 038b82698d..cc183517e3 100644
--- a/django/core/management/commands/dumpdata.py
+++ b/django/core/management/commands/dumpdata.py
@@ -193,7 +193,7 @@ class Command(BaseCommand):
# There is no need to sort dependencies when natural foreign
# keys are not used.
models = []
- for (app_config, model_list) in app_list.items():
+ for app_config, model_list in app_list.items():
if model_list is None:
models.extend(app_config.get_models())
else: