just return it.. no prints needed

This commit is contained in:
Faik Uygur
2009-07-15 17:33:56 +00:00
parent 25eed509c4
commit e2a1eaa381
+1 -2
View File
@@ -60,8 +60,7 @@ class LazyDB(Singleton):
return False
cache_modified = os.stat(self.__cache_file()).st_mtime
cache_dir_modified = os.stat(self.cachedir).st_mtime
valid = cache_modified > cache_dir_modified
return valid
return cache_modified > cache_dir_modified
def cache_load(self):
if os.path.exists(self.__cache_file()) and self.cache_valid():