summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorMarco Buttu <marco.buttu@gmail.com>2014-09-20 16:38:37 +0200
committerTim Graham <timograham@gmail.com>2014-09-25 07:44:22 -0400
commite077c29155e5ecb1ff24eb61d30c99505797e84d (patch)
treebbfdae9dedb5b9f4998b89a226d272bae7c97de4 /django
parent9f576dd54fafdd76aa250f8947cc76c7ae19216c (diff)
Fixed #23551 -- Fixed bash autocompletion crash on Python 3.
Diffstat (limited to 'django')
-rw-r--r--django/core/management/__init__.py2
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: