Gunicorn fix

This commit is contained in:
Senad Uka
2019-11-17 12:55:40 +01:00
parent a3ef27c7a0
commit 9bfb1e1bc3
80 changed files with 7975 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#!/home/hamo/projects/zoblak/parkingkoncept/parkingkonceptvenv/bin/python3.7
# -*- coding: utf-8 -*-
import re
import sys
from gunicorn.app.wsgiapp import run
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(run())