Commit 8708a00c by James Cammarata

Fix typo in redis cache change from 10afaee1

parent b818fbb3
...@@ -98,5 +98,5 @@ class CacheModule(BaseCacheModule): ...@@ -98,5 +98,5 @@ class CacheModule(BaseCacheModule):
# FIXME: there is probably a better way to do this in redis # FIXME: there is probably a better way to do this in redis
ret = dict() ret = dict()
for key in self.keys(): for key in self.keys():
ret[key] self.get(key) ret[key] = self.get(key)
return ret return ret
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment