Commit f18bae34 authored by Vincent Pelletier's avatar Vincent Pelletier

Make SharedDict a new-style class.

parent 7b5e6301
......@@ -215,7 +215,7 @@ if memcache is not None:
except KeyError:
return default
class SharedDict:
class SharedDict(object):
"""
Class to make possible for multiple "users" to store data in the same
dictionary without risking to overwrite other's data.
......
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