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:00:03 +0200 |
| commit | 29ca3d3c4b3d330337cce8713196ef7eea956dc9 (patch) | |
| tree | d6b3ac4d758babe7a5022959fb7c3886c57d220b /docs | |
| parent | a4bb7dd552cf9e45cdd0b38938b18c576419fd8d (diff) | |
Fixed #18587 -- Typo in management command example
Thanks Frank Wiles.
Diffstat (limited to 'docs')
| -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 4a27bdf7a9..12e8ec2494 100644 --- a/docs/howto/custom-management-commands.txt +++ b/docs/howto/custom-management-commands.txt @@ -129,7 +129,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): |
