summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Mispelon <bmispelon@gmail.com>2015-11-13 17:06:22 +0100
committerTim Graham <timograham@gmail.com>2015-11-14 07:59:25 -0500
commit556f0265890648f99a22ebc9a6e64c80aba63ce1 (patch)
treec56f58b6614f5c58983203c090962168cea8e962
parent8a03102f4222449da05fe83c0a391da5449cc6a4 (diff)
[1.9.x] Made BaseCommand.get_version() docstring consistent with docs.
Backport of 9bc0c21b1ce6520dd365251eeb8b4b493d8ec2b7 from master
-rw-r--r--django/core/management/base.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/core/management/base.py b/django/core/management/base.py
index 7eaea741e0..a2fe1f915d 100644
--- a/django/core/management/base.py
+++ b/django/core/management/base.py
@@ -233,9 +233,9 @@ class BaseCommand(object):
def get_version(self):
"""
- Return the Django version, which should be correct for all
- built-in Django commands. User-supplied commands should
- override this method.
+ Return the Django version, which should be correct for all built-in
+ Django commands. User-supplied commands can override this method to
+ return their own version.
"""
return django.get_version()