Debugger/CallStackViewer.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2791
a9577f248f04
parent 2988
f53c03574697
child 3058
0a02c433f52d
--- 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)))

eric ide

mercurial