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): """