Skip to content
Snippets Groups Projects
Commit fb4eba85 authored by Giorgos Korfiatis's avatar Giorgos Korfiatis
Browse files

Fix dict access

parent 265c4549
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ class LockedDict(object):
def get(self, key, default=None):
self._Lock.acquire()
value = self._Dict.get(key, default=default)
value = self._Dict.get(key, default)
self._Lock.release()
return value
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment