summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-07-07 16:00:03 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-07-07 16:02:45 +0200
commitf1e416566a2e09f25b75a379f31a71962fa66437 (patch)
tree4f26febc81316e97f364ff6a448c37f519a1b08c
parentf5db3bddb34f7a2b5807b5af74dc49863fe5f06b (diff)
[1.4x] Fixed #18587 -- Typo in management command example
Thanks Frank Wiles. Backport of 29ca3d3c4b3d330337cce8713196ef7eea956dc9 from master.
-rw-r--r--docs/howto/custom-management-commands.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/custom-management-commands.txt b/docs/howto/custom-management-commands.txt
index 74b67b2ac2..5332a6919e 100644
--- a/docs/howto/custom-management-commands.txt
+++ b/docs/howto/custom-management-commands.txt
@@ -120,7 +120,7 @@ default options such as :djadminopt:`--verbosity` and :djadminopt:`--traceback`.
class Command(BaseCommand):
...
- self.can_import_settings = True
+ can_import_settings = True
def handle(self, *args, **options):