--- 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()