fix basicException not found error

basicException is for py3
This commit is contained in:
HappyZ 2017-12-20 16:11:57 -06:00 committed by GitHub
parent 76b90481f6
commit 75976781c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -59,5 +59,5 @@ if __name__ == '__main__'':
# robot.pause()
except KeyboardInterrupt:
robot.stop()
except BasicException:
except Exception:
raise