From bbe2e22fcb3bf83b03ad25856e29995987e1fc40 Mon Sep 17 00:00:00 2001
From: Damien George <damien.p.george@gmail.com>
Date: Tue, 8 Dec 2015 12:55:28 +0000
Subject: [PATCH] tools: Fix pyboard.py to work under Python 3.

---
 tools/pyboard.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/pyboard.py b/tools/pyboard.py
index 3ff694a7c..925e16bc6 100755
--- a/tools/pyboard.py
+++ b/tools/pyboard.py
@@ -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:
-- 
GitLab