summaryrefslogtreecommitdiff
path: root/cinderclient/exceptions.py
diff options
context:
space:
mode:
authorJohn Griffith <john.griffith@solidfire.com>2012-06-01 18:55:40 -0600
committerJohn Griffith <john.griffith@solidfire.com>2012-06-15 13:56:39 -0600
commit93f9fa75fa8b96e4429dce73e0320686b5b52893 (patch)
tree6f3f7f943c127717160e23644316482b60d06623 /cinderclient/exceptions.py
parent1711f1f9bb3cd514ded6839cff7e3d3aff1df547 (diff)
downloadpython-cinderclient-93f9fa75fa8b96e4429dce73e0320686b5b52893.tar.gz
Set pep8 version to 1.1 in test_requires
* Fixes bug 1007520 * Changes in pep8 cause new failures Change-Id: Ie678f01a5008b0df6ef43a360b599890cab40776
Diffstat (limited to 'cinderclient/exceptions.py')
-rw-r--r--cinderclient/exceptions.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cinderclient/exceptions.py b/cinderclient/exceptions.py
index 91bf30e..628adcd 100644
--- a/cinderclient/exceptions.py
+++ b/cinderclient/exceptions.py
@@ -117,7 +117,8 @@ class HTTPNotImplemented(ClientException):
#
# Instead, we have to hardcode it:
_code_map = dict((c.http_status, c) for c in [BadRequest, Unauthorized,
- Forbidden, NotFound, OverLimit, HTTPNotImplemented])
+ Forbidden, NotFound,
+ OverLimit, HTTPNotImplemented])
def from_response(response, body):