8 lines
263 B
Python
Executable File
8 lines
263 B
Python
Executable File
#!/home/gnx/Desktop/gnx-mail/venv/bin/python3
|
|
import sys
|
|
from django.core.management import execute_from_command_line
|
|
if __name__ == '__main__':
|
|
if sys.argv[0].endswith('.exe'):
|
|
sys.argv[0] = sys.argv[0][:-4]
|
|
sys.exit(execute_from_command_line())
|