Browse Source

Fixed #18587 -- Typo in management command example

Thanks Frank Wiles.
Aymeric Augustin 12 years ago
parent
commit
29ca3d3c4b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/howto/custom-management-commands.txt

+ 1 - 1
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):