diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-07-07 16:00:03 +0200 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-07-07 16:02:45 +0200 |
| commit | f1e416566a2e09f25b75a379f31a71962fa66437 (patch) | |
| tree | 4f26febc81316e97f364ff6a448c37f519a1b08c | |
| parent | f5db3bddb34f7a2b5807b5af74dc49863fe5f06b (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.txt | 2 |
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): |
