Show
Ignore:
Timestamp:
09/24/04 22:21:50 (20 years ago)
Author:
jalet
Message:

Fixed pykotaAccountBalance object location during creation

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storage.py

    r1711 r1742  
    2222# 
    2323# $Log$ 
     24# Revision 1.60  2004/09/24 20:21:50  jalet 
     25# Fixed pykotaAccountBalance object location during creation 
     26# 
    2427# Revision 1.59  2004/09/10 21:32:52  jalet 
    2528# Small fixes for incomplete entry intialization 
     
    544547    def getFromCache(self, cachetype, key) : 
    545548        """Tries to extract something from the cache.""" 
     549        entry = None    # just to please pychecker 
    546550        if self.usecache : 
    547551            entry = self.caches[cachetype].get(key) 
     
    550554            else :     
    551555                self.tool.logdebug("Cache miss (%s->%s)" % (cachetype, key)) 
    552             return entry     
     556        return entry     
    553557             
    554558    def cacheEntry(self, cachetype, key, value) :