diff options
Diffstat (limited to 'django/core/management/__init__.py')
| -rw-r--r-- | django/core/management/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/__init__.py b/django/core/management/__init__.py index b4c28b3e62..e0c924bdac 100644 --- a/django/core/management/__init__.py +++ b/django/core/management/__init__.py @@ -257,7 +257,7 @@ class ManagementUtility: except IndexError: curr = '' - subcommands = list(get_commands()) + ['help'] + subcommands = [*get_commands(), 'help'] options = [('--help', False)] # subcommand |
