summaryrefslogtreecommitdiff
path: root/pip/_vendor/requests/structures.py
diff options
context:
space:
mode:
Diffstat (limited to 'pip/_vendor/requests/structures.py')
-rw-r--r--pip/_vendor/requests/structures.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pip/_vendor/requests/structures.py b/pip/_vendor/requests/structures.py
index a1759137a..9fd78187f 100644
--- a/pip/_vendor/requests/structures.py
+++ b/pip/_vendor/requests/structures.py
@@ -106,8 +106,7 @@ class CaseInsensitiveDict(collections.MutableMapping):
return CaseInsensitiveDict(self._store.values())
def __repr__(self):
- return '%s(%r)' % (self.__class__.__name__, dict(self.items()))
-
+ return str(dict(self.items()))
class LookupDict(dict):
"""Dictionary lookup object."""