Debugger/ExceptionLogger.py

changeset 2622
08cc2f31c983
parent 2302
f29e9405c851
child 2677
3d4277929fb3
child 2988
f53c03574697
diff -r ab5918079c38 -r 08cc2f31c983 Debugger/ExceptionLogger.py
--- a/Debugger/ExceptionLogger.py	Thu Apr 25 19:53:25 2013 +0200
+++ b/Debugger/ExceptionLogger.py	Fri Apr 26 19:37:21 2013 +0200
@@ -106,9 +106,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