From 75976781c30f6236170f3f84610bd9a03f0f3542 Mon Sep 17 00:00:00 2001 From: HappyZ Date: Wed, 20 Dec 2017 16:11:57 -0600 Subject: [PATCH] fix basicException not found error basicException is for py3 --- nexus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nexus.py b/nexus.py index b405b54..f597b1a 100644 --- a/nexus.py +++ b/nexus.py @@ -59,5 +59,5 @@ if __name__ == '__main__'': # robot.pause() except KeyboardInterrupt: robot.stop() - except BasicException: + except Exception: raise