eric6/Debugger/CallStackViewer.py

branch
multi_processing
changeset 7853
35dcac32984a
parent 7802
eefe954f01e8
parent 7836
2f0d208b8137
child 7923
91e843545d9a
equal deleted inserted replaced
7819:d0e9c4cb2aa0 7853:35dcac32984a
183 itm = self.topLevelItem(0) 183 itm = self.topLevelItem(0)
184 while itm is not None: 184 while itm is not None:
185 f.write("{0}\n".format(itm.text(0))) 185 f.write("{0}\n".format(itm.text(0)))
186 f.write(78 * "=" + "\n") 186 f.write(78 * "=" + "\n")
187 itm = self.itemBelow(itm) 187 itm = self.itemBelow(itm)
188 except IOError as err: 188 except OSError as err:
189 E5MessageBox.critical( 189 E5MessageBox.critical(
190 self, 190 self,
191 self.tr("Error saving Call Stack Info"), 191 self.tr("Error saving Call Stack Info"),
192 self.tr("""<p>The call stack info could not be""" 192 self.tr("""<p>The call stack info could not be"""
193 """ written to <b>{0}</b></p>""" 193 """ written to <b>{0}</b></p>"""

eric ide

mercurial