Helpviewer/HelpDocsInstaller.py

changeset 945
8cd4d08fa9f6
parent 791
9ec2ac20e54e
child 1112
8a7d1b9d18db
--- a/Helpviewer/HelpDocsInstaller.py	Fri Mar 11 08:55:14 2011 +0100
+++ b/Helpviewer/HelpDocsInstaller.py	Fri Mar 11 16:51:57 2011 +0100
@@ -14,6 +14,7 @@
 
 from eric5config import getConfig
 
+
 class HelpDocsInstaller(QThread):
     """
     Class implementing the worker thread populating and updating the QtHelp
@@ -104,7 +105,7 @@
         
         files = docsPath.entryList(["*.qch"])
         if not files:
-            engine.setCustomValue(versionKey, 
+            engine.setCustomValue(versionKey,
                 QDateTime().toString(Qt.ISODate) + '|')
             return False
         
@@ -132,7 +133,7 @@
                     )
                     return False
                 
-                engine.setCustomValue(versionKey, 
+                engine.setCustomValue(versionKey,
                     fi.lastModified().toString(Qt.ISODate) + '|' + \
                     fi.absoluteFilePath())
                 return True
@@ -162,7 +163,7 @@
         
         files = docsPath.entryList(["*.qch"])
         if not files:
-            engine.setCustomValue(versionKey, 
+            engine.setCustomValue(versionKey,
                 QDateTime().toString(Qt.ISODate) + '|')
             return False
         
@@ -189,7 +190,7 @@
                     )
                     return False
                 
-                engine.setCustomValue(versionKey, 
+                engine.setCustomValue(versionKey,
                     fi.lastModified().toString(Qt.ISODate) + '|' + \
                     fi.absoluteFilePath())
                 return True

eric ide

mercurial