1
0
mirror of https://github.com/django/django.git synced 2024-12-23 09:36:06 +00:00

Fixed #18587 -- Typo in management command example

Thanks Frank Wiles.
This commit is contained in:
Aymeric Augustin 2012-07-07 16:00:03 +02:00
parent a4bb7dd552
commit 29ca3d3c4b

View File

@ -129,7 +129,7 @@ default options such as :djadminopt:`--verbosity` and :djadminopt:`--traceback`.
class Command(BaseCommand): class Command(BaseCommand):
... ...
self.can_import_settings = True can_import_settings = True
def handle(self, *args, **options): def handle(self, *args, **options):