fixed windows related problems

This commit is contained in:
Your Name
2018-01-25 04:59:16 +01:00
committed by atlantispc_sheppy
parent 585a2ea40c
commit a4a259fefc
9 changed files with 204 additions and 80 deletions

14
plot.py Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/python3
import frontend_new
import sys
if __name__ == "__main__":
try:
frontend_new.main()
#input("Done! <ENTER> to exit")
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)