From 9bc0c21b1ce6520dd365251eeb8b4b493d8ec2b7 Mon Sep 17 00:00:00 2001 From: Baptiste Mispelon Date: Fri, 13 Nov 2015 17:06:22 +0100 Subject: [PATCH] Made BaseCommand.get_version() docstring consistent with docs. --- django/core/management/base.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/django/core/management/base.py b/django/core/management/base.py index f77add2085..b2c5815516 100644 --- a/django/core/management/base.py +++ b/django/core/management/base.py @@ -212,9 +212,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()