| Index: third_party/requests/structures.py
|
| diff --git a/third_party/requests/structures.py b/third_party/requests/structures.py
|
| index 8d02ea67b6d2debc8bb1b368166ccb773abde142..a1759137aa0e30e91f428b6129d6712f6e06f643 100644
|
| --- a/third_party/requests/structures.py
|
| +++ b/third_party/requests/structures.py
|
| @@ -103,7 +103,7 @@ class CaseInsensitiveDict(collections.MutableMapping):
|
|
|
| # Copy is required
|
| def copy(self):
|
| - return CaseInsensitiveDict(self._store.values())
|
| + return CaseInsensitiveDict(self._store.values())
|
|
|
| def __repr__(self):
|
| return '%s(%r)' % (self.__class__.__name__, dict(self.items()))
|
|
|