[minor] _dict copy method call

This commit is contained in:
Anand Doshi 2013-10-14 14:44:40 +05:30
parent 347921bef0
commit 9ffb1dbdd8

View file

@ -30,7 +30,7 @@ class _dict(dict):
super(_dict, self).update(d)
return self
def copy(self):
return _dict(super(_dict, self).copy())
return _dict(dict(self).copy())
def __getattr__(self, key):
return local.get("key", None)