[FIX] Remove unused print statement

bzr revid: stephane@tinyerp.com-20090126092255-473xfp5y2wjkrh67
This commit is contained in:
Stephane Wirtel 2009-01-26 10:22:55 +01:00
parent 0ea948d249
commit 3cda2daba6
1 changed files with 0 additions and 2 deletions

View File

@ -358,11 +358,9 @@ class ir_model_access(osv.osv):
__cache_clearing_methods = []
def register_cache_clearing_method(self, model, method):
print 'Register'
self.__cache_clearing_methods.append((model, method))
def unregister_cache_clearing_method(self, model, method):
print 'Unregister'
try:
i = self.__cache_clearing_methods.index((model, method))
del self.__cache_clearing_methods[i]