You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__main__.py 211B

4 years ago
123456789
  1. """
  2. Invokes django-admin when the django module is run as a script.
  3. Example: python -m django check
  4. """
  5. from django.core import management
  6. if __name__ == "__main__":
  7. management.execute_from_command_line()