summaryrefslogtreecommitdiff
path: root/keystoneclient/client.py
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2013-05-28 08:48:44 -0500
committerDolph Mathews <dolph.mathews@gmail.com>2013-06-03 08:04:07 -0500
commitabcf9db6251a2e1349ee199113cc80a136ff2f79 (patch)
treeefcb2845a4889f826e68f121d184beb5a3783163 /keystoneclient/client.py
parent6372fdbf4b46f57bd14e227e7eaad88224d4c313 (diff)
downloadpython-keystoneclient-abcf9db6251a2e1349ee199113cc80a136ff2f79.tar.gz
Fix line continuations (flake8 E125, E126)
- E125: continuation line does not distinguish itself from next logical line - E126: continuation line over-indented for hanging indent Change-Id: I626a6d5d57db927e8b239f90569b5601c772f28b
Diffstat (limited to 'keystoneclient/client.py')
-rw-r--r--keystoneclient/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystoneclient/client.py b/keystoneclient/client.py
index b75ae54..8e5e2bd 100644
--- a/keystoneclient/client.py
+++ b/keystoneclient/client.py
@@ -185,8 +185,8 @@ class HTTPClient(object):
if not token:
token = self.auth_token_from_user
- if (not token and self.auth_ref
- and not self.auth_ref.will_expire_soon(self.stale_duration)):
+ if (not token and self.auth_ref and not
+ self.auth_ref.will_expire_soon(self.stale_duration)):
token = self.auth_ref.auth_token
(keyring_key, auth_ref) = self.get_auth_ref_from_keyring(auth_url,