Fixed a few code style issues.

Mon, 31 Aug 2015 18:53:49 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 31 Aug 2015 18:53:49 +0200
changeset 4411
15556f6b4b0f
parent 4410
a3a2b652286d
child 4412
9334099d3f89

Fixed a few code style issues.

Documentation/Help/source.qch file | annotate | diff | comparison | revisions
Documentation/Source/eric6.eric6.html file | annotate | diff | comparison | revisions
QScintilla/Editor.py file | annotate | diff | comparison | revisions
eric6.py file | annotate | diff | comparison | revisions
Binary file Documentation/Help/source.qch has changed
--- 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>
--- 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
--- 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

eric ide

mercurial