Helpviewer/Feeds/FeedsManager.py

changeset 3020
542e97d4ecb3
parent 3002
6ffc581f00f1
child 3034
7ce719013078
child 3058
0a02c433f52d
--- a/Helpviewer/Feeds/FeedsManager.py	Mon Oct 14 18:26:25 2013 +0200
+++ b/Helpviewer/Feeds/FeedsManager.py	Mon Oct 14 19:30:36 2013 +0200
@@ -172,7 +172,8 @@
                 urlString, title = dlg.getData()
                 for feed in self.__feeds:
                     if feed[0] == urlString:
-                        E5MessageBox.critical(self,
+                        E5MessageBox.critical(
+                            self,
                             self.trUtf8("Duplicate Feed URL"),
                             self.trUtf8(
                                 """A feed with the URL {0} exists already."""
@@ -193,7 +194,8 @@
         """
         itm = self.feedsTree.selectedItems()[0]
         title = itm.text(0)
-        res = E5MessageBox.yesNo(self,
+        res = E5MessageBox.yesNo(
+            self,
             self.trUtf8("Delete Feed"),
             self.trUtf8(
                 """<p>Do you really want to delete the feed"""
@@ -422,6 +424,7 @@
         
         errorStr = itm.data(0, FeedsManager.ErrorDataRole)
         if errorStr:
-            E5MessageBox.critical(self,
+            E5MessageBox.critical(
+                self,
                 self.trUtf8("Error loading feed"),
                 "{0}".format(errorStr))

eric ide

mercurial