web/lib/django/contrib/auth/create_superuser.py
changeset 0 0d40e90630ef
equal deleted inserted replaced
-1:000000000000 0:0d40e90630ef
       
     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")