[Erp5-report] r29457 - /erp5/trunk/products/ERP5Type/CachePlugins/RamCache.py

nobody at svn.erp5.org nobody at svn.erp5.org
Wed Oct 7 17:46:24 CEST 2009


Author: nicolas
Date: Wed Oct  7 17:46:23 2009
New Revision: 29457

URL: http://svn.erp5.org?rev=29457&view=rev
Log:
Remove empty spaces

Modified:
    erp5/trunk/products/ERP5Type/CachePlugins/RamCache.py

Modified: erp5/trunk/products/ERP5Type/CachePlugins/RamCache.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Type/CachePlugins/RamCache.py?rev=29457&r1=29456&r2=29457&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Type/CachePlugins/RamCache.py [utf8] (original)
+++ erp5/trunk/products/ERP5Type/CachePlugins/RamCache.py [utf8] Wed Oct  7 17:46:23 2009
@@ -62,7 +62,7 @@
   def __init__(self, params={}):
     self._cache_dict = {}
     BaseCache.__init__(self)
- 
+
   def initCacheStorage(self):
     """ Init cache storage """
     ## cache storage is a RAM based dictionary
@@ -92,7 +92,7 @@
     if forceCheck or (now > self._next_cache_expire_check_at):
       ## time to check for expired cache items
       self._next_cache_expire_check_at = now + self.cache_expire_check_interval
-      cache = self.getCacheStorage()        
+      cache = self.getCacheStorage()
       for key, value in cache.items():
         if value.isExpired():
           try:




More information about the Erp5-report mailing list