r5407 - trunk/mint/python/mint

tmckay at fedoraproject.org tmckay at fedoraproject.org
Wed Jun 6 19:44:55 UTC 2012


Author: tmckay
Date: 2012-06-06 19:44:54 +0000 (Wed, 06 Jun 2012)
New Revision: 5407

Modified:
   trunk/mint/python/mint/vacuum.py
Log:
Initialization of self.processing_vacuum was in the wrong place


Modified: trunk/mint/python/mint/vacuum.py
===================================================================
--- trunk/mint/python/mint/vacuum.py	2012-06-06 19:36:08 UTC (rev 5406)
+++ trunk/mint/python/mint/vacuum.py	2012-06-06 19:44:54 UTC (rev 5407)
@@ -6,12 +6,12 @@
 class VacuumThread(MintPeriodicProcessThread):
     def __init__(self, app):
         super(VacuumThread, self).__init__(app, 60 * 60)
+        self.processing_vacuum = False
 
     def init(self):
         super(VacuumThread, self).init()
 
         log.debug("Vacuum interval is %i seconds", self.interval)
-        self.processing_vacuum = False
 
     def run(self):
         if self.interval >= 60 * 60:



More information about the cumin-developers mailing list