Fix parenthesis typo

This commit is contained in:
Avi Das
2014-03-22 16:30:22 -05:00
parent 98ac3df713
commit a3fb689942
+1 -1
View File
@@ -109,7 +109,7 @@ class CaseInsensitiveDict(collections.MutableMapping):
return '%s(%r)' % (self.__class__.__name__, dict(self.items()))
def __str__(self):
return '%s' % (dict(self.items())
return '%s' % (dict(self.items()))
class LookupDict(dict):