1
0

do not call exit() in the interface module

This commit is contained in:
thomasv
2013-03-13 15:26:29 +01:00
parent c3dc2d5284
commit a4f977190e
2 changed files with 8 additions and 4 deletions

View File

@@ -595,8 +595,8 @@ class Interface(threading.Thread):
# wait until connection is established
self.connect_event.wait()
if not self.is_connected:
print_msg("Not connected, aborting.")
sys.exit(1)
return False
return True
def run(self):
while True: