summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/management/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/django/core/management/__init__.py b/django/core/management/__init__.py
index 774fe59d31..f706fa3c7e 100644
--- a/django/core/management/__init__.py
+++ b/django/core/management/__init__.py
@@ -217,7 +217,8 @@ class ManagementUtility(object):
# Special-cases: We want 'django-admin.py --version' and
# 'django-admin.py --help' to work, for backwards compatibility.
elif self.argv[1:] == ['--version']:
- print django.get_version()
+ # LaxOptionParser already takes care of printing the version.
+ pass
elif self.argv[1:] == ['--help']:
sys.stderr.write(self.main_help_text() + '\n')
else: