Mon, 31 Aug 2015 18:53:49 +0200
Fixed a few code style issues.
diff -r a3a2b652286d -r 15556f6b4b0f Documentation/Help/source.qch Binary file Documentation/Help/source.qch has changed
diff -r a3a2b652286d -r 15556f6b4b0f Documentation/Source/eric6.eric6.html --- a/Documentation/Source/eric6.eric6.html Mon Aug 31 18:35:31 2015 +0200 +++ b/Documentation/Source/eric6.eric6.html Mon Aug 31 18:53:49 2015 +0200 @@ -88,13 +88,7 @@ <b>main</b>(<i></i>) <p> Main entry point into the application. -</p><dl> -<dt>Raises <b>Exception</b>:</dt> -<dd> -re-raised for any exception occurring in the main - program logic -</dd> -</dl> +</p> <div align="right"><a href="#top">Up</a></div> <hr /><hr /> <a NAME="uiStartUp" ID="uiStartUp"></a>
diff -r a3a2b652286d -r 15556f6b4b0f QScintilla/Editor.py --- a/QScintilla/Editor.py Mon Aug 31 18:35:31 2015 +0200 +++ b/QScintilla/Editor.py Mon Aug 31 18:53:49 2015 +0200 @@ -3027,7 +3027,7 @@ @return flag indicating success (boolean) """ fn = self.__getSaveFileName(path) - if not fn: + if not fn: return False res = self.writeFile(fn) @@ -3055,7 +3055,7 @@ saveas = True fn = self.__getSaveFileName(path) - if not fn: + if not fn: return False newName = fn
diff -r a3a2b652286d -r 15556f6b4b0f eric6.py --- a/eric6.py Mon Aug 31 18:35:31 2015 +0200 +++ b/eric6.py Mon Aug 31 18:53:49 2015 +0200 @@ -213,9 +213,6 @@ def main(): """ Main entry point into the application. - - @exception Exception re-raised for any exception occurring in the main - program logic """ from Globals import AppInfo import Globals