summaryrefslogtreecommitdiff
path: root/swiftclient/exceptions.py
diff options
context:
space:
mode:
authorChmouel Boudjnah <chmouel@enovance.com>2014-04-15 14:50:10 -0400
committerChmouel Boudjnah <chmouel@enovance.com>2014-04-17 12:04:43 -0400
commit504e5a7f53beb53ee1f099471017d63acf42cf65 (patch)
tree84829161d80ea8a3e13b9fbed8fa1225edc5382f /swiftclient/exceptions.py
parent8830c81db7cd86f983e09cf1f4b8705930184bd4 (diff)
downloadpython-swiftclient-504e5a7f53beb53ee1f099471017d63acf42cf65.tar.gz
Remove validate_headers
It wasn't used anymore since moved up to requests (and it fails in py3). Change-Id: Ic8a80ae09ca6445696a9cf34ffb503c5ff51bc79
Diffstat (limited to 'swiftclient/exceptions.py')
-rw-r--r--swiftclient/exceptions.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/swiftclient/exceptions.py b/swiftclient/exceptions.py
index fe730e5..9a77672 100644
--- a/swiftclient/exceptions.py
+++ b/swiftclient/exceptions.py
@@ -66,7 +66,3 @@ class ClientException(Exception):
b += ' [first 60 chars of response] %s' \
% self.http_response_content[:60]
return b and '%s: %s' % (a, b) or a
-
-
-class InvalidHeadersException(Exception):
- pass