Merge pull request #455 from bmidgley/brad/error-exit

Exit with an error code on failure
This commit is contained in:
Ben Meadors authored and GitHub committed 2023-08-11 06:21:36 -05:00
commit 95bfc0b428
1 file changed
+1
+1
View File
@@ -779,6 +779,7 @@ def onConnected(interface):
except Exception as ex:
print(f"Aborting due to: {ex}")
interface.close() # close the connection now, so that our app exits
sys.exit(1)
def printConfig(config):