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