DebugClients/Python3/DebugClientBase.py

changeset 12
1d8dd9706f46
parent 5
fa319c01b604
child 13
1af94a91f439
diff -r b0996e4a289e -r 1d8dd9706f46 DebugClients/Python3/DebugClientBase.py
--- a/DebugClients/Python3/DebugClientBase.py	Fri Jan 01 16:11:36 2010 +0000
+++ b/DebugClients/Python3/DebugClientBase.py	Sat Jan 02 15:11:35 2010 +0000
@@ -348,7 +348,7 @@
         except SyntaxError:
             exctype, excval, exctb = sys.exc_info()
             try:
-                message, (filename, linenr, charnr, text) = excval.args
+                message, (filename, linenr, charnr, text) = excval[0], excval[1]
             except ValueError:
                 exclist = []
             else:

eric ide

mercurial