Plugins/AboutPlugin/AboutDialog.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2791
a9577f248f04
parent 3004
c4bf32c791d0
child 3058
0a02c433f52d
diff -r 9986ec0e559a -r 10516539f238 Plugins/AboutPlugin/AboutDialog.py
--- a/Plugins/AboutPlugin/AboutDialog.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Plugins/AboutPlugin/AboutDialog.py	Fri Oct 18 23:00:41 2013 +0200
@@ -23,8 +23,8 @@
 
 aboutText = QApplication.translate("AboutDialog",
     """<p>{0} is an Integrated Development Environment for the Python"""
-    """ programming language. It is written using the PyQt Python bindings for"""
-    """ the Qt GUI toolkit and the QScintilla editor widget.</p>"""
+    """ programming language. It is written using the PyQt Python bindings"""
+    """ for the Qt GUI toolkit and the QScintilla editor widget.</p>"""
     """<p>For more information see"""
     """ <a href="{1}">{1}</a>.</p>"""
     """<p>Please send bug reports to <a href="mailto:{2}">{2}</a>.</p>"""
@@ -33,7 +33,8 @@
     """<p>{0} uses third party software which is copyrighted"""
     """ by its respective copyright holder. For details see"""
     """ the copyright notice of the individual package.</p>"""
-).format(UI.Info.Program, UI.Info.Homepage, UI.Info.BugAddress, UI.Info.FeatureAddress)
+).format(UI.Info.Program, UI.Info.Homepage, UI.Info.BugAddress,
+         UI.Info.FeatureAddress)
 
 authorsText = \
 """\
@@ -66,8 +67,9 @@
     Italian translations
 """
 
-thanksText = \
-"""Phil Thompson for providing PyQt and QScintilla and pushing me into this business.
+thanksText = """\
+Phil Thompson for providing PyQt and QScintilla and pushing me into this
+business.
 
 Andrew Bushnell of Fluent Inc. for contributing the multithreading debugger
 and a bunch of fixes to enhance the platform independence.
@@ -741,7 +743,8 @@
         self.setupUi(self)
         
         self.ericLabel.setText(titleText)
-        self.ericPixmap.setPixmap(UI.PixmapCache.getPixmap("eric.png").scaled(48, 48))
+        self.ericPixmap.setPixmap(
+            UI.PixmapCache.getPixmap("eric.png").scaled(48, 48))
         
         ####################################################################
         ## ABOUT

eric ide

mercurial