rename API add_owner -> addowner

This commit is contained in:
gwen
2013-08-27 16:12:53 +02:00
parent b341844450
commit a894a5e27b
4 changed files with 8 additions and 8 deletions

View File

@ -37,7 +37,7 @@ class Values(Cache):
try:
getattr(owners, owner[0])
except AttributeError:
owners.add_owner(owner[0])
owners.addowner(owner[0])
# sqlite
def _sqlite_select(self, path):
@ -112,5 +112,5 @@ class Values(Cache):
try:
return getattr(owners, owner)
except AttributeError:
owners.add_owner(owner)
owners.addowner(owner)
return getattr(owners, owner)