Fix typo in redis cache change from 10afaee1

This commit is contained in:
James Cammarata 2014-09-10 09:06:40 -05:00
parent b818fbb305
commit 8708a00cbd

View file

@ -98,5 +98,5 @@ class CacheModule(BaseCacheModule):
# FIXME: there is probably a better way to do this in redis
ret = dict()
for key in self.keys():
ret[key] self.get(key)
ret[key] = self.get(key)
return ret