From 4db06c65975abc8aa75f6b82367d564ad7727a12 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Sat, 05 May 2018 11:19:11 +0000 Subject: [PATCH] Playground with threaded run --- tsclient.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tsclient.py b/tsclient.py index 693d51b..492badc 100755 --- a/tsclient.py +++ b/tsclient.py @@ -171,7 +171,7 @@ sleep(1) if(p.poll() is not None): # trisurf exited! print("Trisurf was stopped with return code {}".format(p.returncode)) - if(p.returncode!=0): + if(p.returncode>0): try: send_error_report(CONNECT_ADDR, cid, rid, p.returncode) except: -- Gitblit v1.9.3