diff options
| author | Marco Buttu <marco.buttu@gmail.com> | 2014-09-20 16:38:37 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-09-25 07:44:22 -0400 |
| commit | e077c29155e5ecb1ff24eb61d30c99505797e84d (patch) | |
| tree | bbfdae9dedb5b9f4998b89a226d272bae7c97de4 /django | |
| parent | 9f576dd54fafdd76aa250f8947cc76c7ae19216c (diff) | |
Fixed #23551 -- Fixed bash autocompletion crash on Python 3.
Diffstat (limited to 'django')
| -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 b25477fc82..0502489d4e 100644 --- a/django/core/management/__init__.py +++ b/django/core/management/__init__.py @@ -222,7 +222,7 @@ class ManagementUtility(object): curr = '' subcommands = list(get_commands()) + ['help'] - options = [('--help', None)] + options = [('--help', False)] # subcommand if cword == 1: |
