Debugger/ExceptionLogger.py

branch
Py2 comp.
changeset 2677
3d4277929fb3
parent 2525
8b507a9a2d40
parent 2622
08cc2f31c983
child 3057
10516539f238
--- a/Debugger/ExceptionLogger.py	Fri May 24 18:39:58 2013 +0200
+++ b/Debugger/ExceptionLogger.py	Tue May 28 20:52:12 2013 +0200
@@ -108,9 +108,9 @@
             itm.setText(0, "{0}, {1}".format(exceptionType, exceptionMessage))
         
         # now add the call stack, most recent call first
-        for fn, ln in stackTrace:
+        for entry in stackTrace:
             excitm = QTreeWidgetItem(itm)
-            excitm.setText(0, "{0}, {1:d}".format(fn, ln))
+            excitm.setText(0, "{0}, {1:d}".format(entry[0], entry[1]))
             
     def debuggingStarted(self):
         """

eric ide

mercurial