aboutsummaryrefslogtreecommitdiff
path: root/Host
diff options
context:
space:
mode:
authorTat-Chee Wan (USM)2011-02-23 17:44:19 +0800
committerTat-Chee Wan (USM)2011-02-23 17:44:19 +0800
commita017874bb2a7881aaaf57832049fe281191c05c2 (patch)
tree189b4a6e1de8b4a054383ef0f8c125298328b77c /Host
parentb227bb6176e3bfda717ec3a54a96b452c13c0a60 (diff)
fixed syntax error for appending strings
Diffstat (limited to 'Host')
-rwxr-xr-xHost/nxt-gdb-server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Host/nxt-gdb-server.py b/Host/nxt-gdb-server.py
index 0b7c871..c2af26d 100755
--- a/Host/nxt-gdb-server.py
+++ b/Host/nxt-gdb-server.py
@@ -101,7 +101,7 @@ class NXTGDBServer:
if segno > 0:
assert segno == prev_segno + 1, "segno = %s, prev_segno = %s" % (segno, prev_segno)
prev_segno = segno
- msg.append(s)
+ msg += s
except usb.USBError as e:
# Some pyusb are buggy, ignore some "errors".
if e.args != ('No error', ):