mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 19:20:22 +01:00
tools: Fix pyboard.py to work under Python 3.
This commit is contained in:
@@ -128,7 +128,7 @@ class Pyboard:
|
||||
try:
|
||||
self.serial = serial.Serial(device, baudrate=baudrate, interCharTimeout=1)
|
||||
break
|
||||
except OSError, IOError: # Py2 and Py3 have different errors
|
||||
except (OSError, IOError): # Py2 and Py3 have different errors
|
||||
if wait == 0:
|
||||
continue
|
||||
if attempt == 0:
|
||||
|
||||
Reference in New Issue
Block a user