--- a/Debugger/CallStackViewer.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Debugger/CallStackViewer.py Fri Oct 18 23:00:41 2013 +0200 @@ -104,8 +104,8 @@ """ Public slot to show the call stack of the program being debugged. - @param stack list of tuples with call stack data (file name, line number, - function name, formatted argument/values list) + @param stack list of tuples with call stack data (file name, + line number, function name, formatted argument/values list) """ self.clear() for fname, fline, ffunc, fargs in stack: @@ -188,6 +188,7 @@ except IOError as err: E5MessageBox.critical(self, self.trUtf8("Error saving Call Stack Info"), - self.trUtf8("""<p>The call stack info could not be written""" - """ to <b>{0}</b></p><p>Reason: {1}</p>""")\ + self.trUtf8("""<p>The call stack info could not be""" + """ written to <b>{0}</b></p>""" + """<p>Reason: {1}</p>""")\ .format(fname, str(err)))