Remove 's' from cache log message

This commit is contained in:
dessant 2015-03-23 18:07:28 +02:00
parent f5d24e39b5
commit 29ff848512
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class Cache(object):
'timeout': timeout}
Cache._objects[category] = {}
Logger.debug(
'Cache: register <%s> with limit=%s, timeout=%ss' %
'Cache: register <%s> with limit=%s, timeout=%s' %
(category, str(limit), str(timeout)))
@staticmethod