equal
deleted
inserted
replaced
|
1 """ |
|
2 Create a superuser from the command line. Deprecated; use manage.py |
|
3 createsuperuser instead. |
|
4 """ |
|
5 |
|
6 if __name__ == "__main__": |
|
7 from django.core.management import call_command |
|
8 call_command("createsuperuser") |