typo in correctmap

This commit is contained in:
ichuang
2012-06-12 13:52:34 -04:00
parent a0e628f761
commit 5031c838cc

View File

@@ -24,7 +24,7 @@ class CorrectMap(object):
self.set(*args,**kwargs)
def __getitem__(self, *args, **kwargs):
return self.cmap.__getitem(*args, **kwargs)
return self.cmap.__getitem__(*args, **kwargs)
def __iter__(self):
return self.cmap.__iter__()