mirror of
https://github.com/django/django.git
synced 2025-07-22 20:55:17 +00:00
Fixed #21018 -- Reversed precedence order for management commands.
This commit is contained in:
parent
f17d00278e
commit
0ce945a671
10 changed files with 50 additions and 2 deletions
|
@ -0,0 +1,7 @@
|
|||
from django.core.management.base import NoArgsCommand
|
||||
|
||||
|
||||
class Command(NoArgsCommand):
|
||||
|
||||
def handle_noargs(self, **options):
|
||||
self.stdout.write('simple_app')
|
Loading…
Add table
Add a link
Reference in a new issue