Debugger/CallStackViewer.py

changeset 2988
f53c03574697
parent 2732
c14fe50c113e
child 3020
542e97d4ecb3
child 3057
10516539f238
--- a/Debugger/CallStackViewer.py	Sun Oct 06 18:02:21 2013 +0200
+++ b/Debugger/CallStackViewer.py	Sun Oct 06 19:00:04 2013 +0200
@@ -102,8 +102,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:
@@ -186,6 +186,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