mirror of
https://github.com/django/django.git
synced 2025-11-25 13:13:28 +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
tests/admin_scripts/complex_app/management/__init__.py
Normal file
0
tests/admin_scripts/complex_app/management/__init__.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from django.core.management.base import NoArgsCommand
|
||||
|
||||
|
||||
class Command(NoArgsCommand):
|
||||
|
||||
def handle_noargs(self, **options):
|
||||
self.stdout.write('complex_app')
|
||||
Loading…
Add table
Add a link
Reference in a new issue