blob: 7b58678b7835b83f7022d9246f05383faf8b0fe8 [file] [log] [blame]
"""
Create a superuser from the command line. Deprecated; use manage.py
createsuperuser instead.
"""
if __name__ == "__main__":
from django.core.management import call_command
call_command("createsuperuser")