Fixed typo in error reporter.
This commit is contained in:
parent
c1e4b1fe07
commit
f56500df9a
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ class ContentsHandler(object):
|
||||||
return [self._idcache[pk] for pk in pks]
|
return [self._idcache[pk] for pk in pks]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
# this means an actual failure of caching. Return real database match.
|
# this means an actual failure of caching. Return real database match.
|
||||||
logger.logerr("contents cache failed for %s." % (self.obj.key))
|
logger.log_err("contents cache failed for %s." % (self.obj.key))
|
||||||
return list(ObjectDB.objects.filter(db_location=self.obj))
|
return list(ObjectDB.objects.filter(db_location=self.obj))
|
||||||
|
|
||||||
def add(self, obj):
|
def add(self, obj):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue