HighNeed_projekt_inz/highneed/venv/lib/python3.6/site-packages/django/__main__.py
Mikhail Ronchyk ddf3d072cc first commit
2021-03-25 15:15:48 +03:00

10 lines
211 B
Python

"""
Invokes django-admin when the django module is run as a script.
Example: python -m django check
"""
from django.core import management
if __name__ == "__main__":
management.execute_from_command_line()