summaryrefslogtreecommitdiffstatshomepage
path: root/tools/pyboard.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/pyboard.py')
-rwxr-xr-xtools/pyboard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pyboard.py b/tools/pyboard.py
index 162a15024c..fec30e1592 100755
--- a/tools/pyboard.py
+++ b/tools/pyboard.py
@@ -104,7 +104,7 @@ class Pyboard:
data_err = self.read_until(1, b'\x04', timeout=timeout)
if not data_err.endswith(b'\x04'):
raise PyboardError('timeout waiting for second EOF reception')
- data_err = data_err[:-2]
+ data_err = data_err[:-1]
# return normal and error output
return data, data_err