From e6202b9361f6818e5a1644a61a13bf6802345a11 Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Thu, 10 Jul 2014 23:05:03 -0400 Subject: [PATCH] Update oslo-incubator apiclient.exceptions module Changes - * pep8: fixed multiple violations * fixed typos found by RETF rules Change-Id: Ic0e9855e7cfdeae4e3230af24b4ebccf4995fa10 --- saharaclient/openstack/common/apiclient/exceptions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/saharaclient/openstack/common/apiclient/exceptions.py b/saharaclient/openstack/common/apiclient/exceptions.py index 5dc2c6d1..891d79fe 100644 --- a/saharaclient/openstack/common/apiclient/exceptions.py +++ b/saharaclient/openstack/common/apiclient/exceptions.py @@ -77,7 +77,7 @@ class AuthPluginOptionsMissing(AuthorizationFailure): class AuthSystemNotFound(AuthorizationFailure): - """User has specified a AuthSystem that is not installed.""" + """User has specified an AuthSystem that is not installed.""" def __init__(self, auth_system): super(AuthSystemNotFound, self).__init__( _("AuthSystemNotFound: %s") % repr(auth_system)) @@ -427,7 +427,7 @@ def from_response(response, method, url): """ req_id = response.headers.get("x-openstack-request-id") - #NOTE(hdd) true for older versions of nova and cinder + # NOTE(hdd) true for older versions of nova and cinder if not req_id: req_id = response.headers.get("x-compute-request-id") kwargs = {