1
0
mirror of https://github.com/django/django.git synced 2025-06-05 03:29:12 +00:00

[1.4x] Fixed #18587 -- Typo in management command example

Thanks Frank Wiles.

Backport of 29ca3d3c4b3d330337cce8713196ef7eea956dc9 from master.
This commit is contained in:
Aymeric Augustin 2012-07-07 16:00:03 +02:00
parent f5db3bddb3
commit f1e416566a

View File

@ -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):