Loading django/core/management/__init__.py +1 −1 Original line number Diff line number Diff line Loading @@ -67,7 +67,7 @@ def get_commands(): if not settings.configured: return commands for app_config in reversed(apps.get_app_configs()): for app_config in reversed(list(apps.get_app_configs())): path = os.path.join(app_config.path, 'management') commands.update({name: app_config.name for name in find_commands(path)}) Loading Loading
django/core/management/__init__.py +1 −1 Original line number Diff line number Diff line Loading @@ -67,7 +67,7 @@ def get_commands(): if not settings.configured: return commands for app_config in reversed(apps.get_app_configs()): for app_config in reversed(list(apps.get_app_configs())): path = os.path.join(app_config.path, 'management') commands.update({name: app_config.name for name in find_commands(path)}) Loading