mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 10:31:09 -05:00
9 lines
274 B
Python
Executable File
9 lines
274 B
Python
Executable File
#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from twisted.conch.scripts.tkconch import run
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(run())
|