This commit is contained in:
Sheppy
2018-01-25 03:20:21 +01:00
commit 585a2ea40c
18 changed files with 1115 additions and 0 deletions

13
init.py Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/python3
import frontend_new
import sys
if __name__ == "__main__":
try:
frontend_new.main()
sys.exit(0)
except KeyboardInterrupt as e:
sys.exit(1)
except Exception as e:
print(e)
input("Ein Fehler ist aufgetreten, <ENTER> um zu beenden, wenn dieser Fehler unerwartet war -> Mail!")
sys.exit(1)