CacheProxyDb: use getattr()

This commit is contained in:
Doug Blank 2016-05-26 08:36:27 -04:00
parent 6454b87672
commit 1611340dca

View File

@ -45,7 +45,7 @@ class CacheProxyDb:
If an attribute isn't found here, use the self.db
version.
"""
return self.db.__getattr__(attr)
return getattr(self.db, attr)
def clear_cache(self, handle=None):
"""