7 lines
252 B
Python
Executable File
7 lines
252 B
Python
Executable File
#!/home/coder/repos/weirsoe-party-protocol/.venv/bin/python
|
|
import sys
|
|
from django.core.management import execute_from_command_line
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = sys.argv[0].removesuffix('.exe')
|
|
sys.exit(execute_from_command_line())
|