Debugger/WatchPointViewer.py

branch
Py2 comp.
changeset 3058
0a02c433f52d
parent 3057
10516539f238
parent 3021
801289962f4e
child 3060
5883ce99ee12
diff -r 10516539f238 -r 0a02c433f52d Debugger/WatchPointViewer.py
--- a/Debugger/WatchPointViewer.py	Fri Oct 18 23:00:41 2013 +0200
+++ b/Debugger/WatchPointViewer.py	Fri Nov 01 15:48:48 2013 +0100
@@ -245,7 +245,8 @@
                     """<p>A watch expression '<b>{0}</b>'"""
                     """ for the variable <b>{1}</b> already exists.</p>""")\
                     .format(special, Utilities.html_encode(cond))
-            E5MessageBox.warning(self,
+            E5MessageBox.warning(
+                self,
                 self.trUtf8("Watch expression already exists"),
                 msg)
         
@@ -302,8 +303,8 @@
             if dlg.exec_() == QDialog.Accepted:
                 cond, temp, enabled, count, special = dlg.getData()
                 if not self.__findDuplicates(cond, special, True, sindex):
-                    self.__model.setWatchPointByIndex(sindex,
-                        cond, special, (temp, enabled, count))
+                    self.__model.setWatchPointByIndex(
+                        sindex, cond, special, (temp, enabled, count))
                     self.__resizeColumns()
                     self.__resort()
 

eric ide

mercurial