UI/DiffDialog.py

changeset 3020
542e97d4ecb3
parent 3012
d177226027e2
child 3030
4a0a82ddd9d2
--- a/UI/DiffDialog.py	Mon Oct 14 18:26:25 2013 +0200
+++ b/UI/DiffDialog.py	Mon Oct 14 19:30:36 2013 +0200
@@ -300,7 +300,8 @@
             if ex:
                 fname += ex
         if QFileInfo(fname).exists():
-            res = E5MessageBox.yesNo(self,
+            res = E5MessageBox.yesNo(
+                self,
                 self.trUtf8("Save Diff"),
                 self.trUtf8("<p>The patch file <b>{0}</b> already exists."
                             " Overwrite it?</p>").format(fname),
@@ -339,7 +340,8 @@
             lines1 = f1.readlines()
             f1.close()
         except IOError:
-            E5MessageBox.critical(self,
+            E5MessageBox.critical(
+                self,
                 self.trUtf8("Compare Files"),
                 self.trUtf8(
                     """<p>The file <b>{0}</b> could not be read.</p>""")
@@ -356,7 +358,8 @@
             lines2 = f2.readlines()
             f2.close()
         except IOError:
-            E5MessageBox.critical(self,
+            E5MessageBox.critical(
+                self,
                 self.trUtf8("Compare Files"),
                 self.trUtf8(
                     """<p>The file <b>{0}</b> could not be read.</p>""")

eric ide

mercurial