Skip to content

Commit

Permalink
Merge pull request #6 from enwaytech/mz/make_py3_compatible
Browse files Browse the repository at this point in the history
[reach_rs_driver] make python3 compatible
  • Loading branch information
mzwaen authored Apr 12, 2021
2 parents 8fe8a52 + a0d5e3d commit 4c76632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/enway_reach_rs_driver/reach_rs_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def connect_to_device(self):
return
except socket.timeout:
self.connection_status = 'connect timeout'
except socket.error, msg:
except socket.error as msg:
self.connection_status = 'connect error ({0})'.format(msg)

exit()
Expand Down

0 comments on commit 4c76632

Please sign in to comment.