Commit 5144136c by Krishnan Sanjay

Update ooc.py (make it hashable!)

parent ac0e6a8b
Showing with 1 additions and 1 deletions
...@@ -89,7 +89,7 @@ class MemoryLimitedHashMap(object): ...@@ -89,7 +89,7 @@ class MemoryLimitedHashMap(object):
return key return key
def path2Subkey(self, k): def path2Subkey(self, k):
key = k.split("_") key = tuple(k.split("_"))
return key return key
def flushKey(self, k, subkey=""): def flushKey(self, k, subkey=""):
......
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 sign in to comment