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