Browse Source

tools/pyboard.py: Change base class of PyboardError to Exception.

Following standard practice for defining custom exceptions.
pull/4040/merge
Martin Dybdal 6 years ago
committed by Damien George
parent
commit
5ed8226e02
  1. 2
      tools/pyboard.py

2
tools/pyboard.py

@ -81,7 +81,7 @@ def stdout_write_bytes(b):
stdout.write(b)
stdout.flush()
class PyboardError(BaseException):
class PyboardError(Exception):
pass
class TelnetToSerial:

Loading…
Cancel
Save