mirror of
https://github.com/FAUSheppy/ths-datenlogger
synced 2025-12-07 04:31:34 +01:00
fixed windows related problems
This commit is contained in:
committed by
atlantispc_sheppy
parent
585a2ea40c
commit
a4a259fefc
14
plot.py
Normal file
14
plot.py
Normal 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)
|
||||
Reference in New Issue
Block a user