Fixed #21018 -- Reversed precedence order for management commands.

This commit is contained in:
Aymeric Augustin 2014-01-01 18:05:12 +01:00
parent f17d00278e
commit 0ce945a671
10 changed files with 50 additions and 2 deletions

View file

@ -0,0 +1,7 @@
from django.core.management.base import NoArgsCommand
class Command(NoArgsCommand):
def handle_noargs(self, **options):
self.stdout.write('simple_app')