From b163e8582b2883f64b540986a94ef6d76a52d617 Mon Sep 17 00:00:00 2001 From: Pete Shadbolt Date: Mon, 19 Sep 2016 13:34:35 +0100 Subject: [PATCH] Don't give up on network timeout --- abp/fancy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abp/fancy.py b/abp/fancy.py index 8ec95db..94185ff 100644 --- a/abp/fancy.py +++ b/abp/fancy.py @@ -43,7 +43,7 @@ class GraphState(graphstate.GraphState, nx.Graph): time.sleep(delay) except websocket._exceptions.WebSocketTimeoutException: print "Timed out ... you might be pushing a bit hard" - sys.exit(0) + time.sleep(delay) #self.ws.close() #self.connect_to_server()