basabuuka_prototyp/venv/bin/pyhtmlizer

9 lines
265 B
Text
Raw Permalink Normal View History

2020-08-16 19:36:44 +02:00
#!/home/alpcentaur/ProjektA/PrototypeWebApp/venv/bin/python3.5
# -*- coding: utf-8 -*-
import re
import sys
from twisted.scripts.htmlizer import run
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(run())