[FIX] registry.py: typos (invalid syntax).

I wonder how come I made the previous commit.

bzr revid: vmt@openerp.com-20110826121026-da90yx3iapj6y1v1
This commit is contained in:
Vo Minh Thu 2011-08-26 14:10:26 +02:00
parent 6fdadb04f5
commit dad3528ab7
1 changed files with 3 additions and 3 deletions

View File

@ -82,7 +82,7 @@ class Registry(object):
return res
def clear_caches
def clear_caches():
""" Clear the caches
This clears the caches associated to methods decorated with
@ -165,7 +165,7 @@ class RegistryManager(object):
@classmethod
def clear_caches(db_name)
def clear_caches(db_name):
""" Clear the caches
This clears the caches associated to methods decorated with
@ -176,7 +176,7 @@ class RegistryManager(object):
that would loads the given database if it was not already loaded.
"""
if db_name in cls.registries:
del cls.registries[db_name].clear_caches()
cls.registries[db_name].clear_caches()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: