diff options
| author | Jenkins <jenkins@review.openstack.org> | 2014-06-27 21:41:31 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2014-06-27 21:41:31 +0000 |
| commit | 63b1c060244bb08d59ef9df8e26d901e98bf3bf8 (patch) | |
| tree | 5c9eee3754507c3cb3eaa7c9340bf7cbff47418e /openstackclient/shell.py | |
| parent | 42765a15f3b4f02b6fc59dd54e5e0a3dab7105f5 (diff) | |
| parent | a78d75f290278501b5d8130dc58420952a13e1a1 (diff) | |
| download | python-openstackclient-63b1c060244bb08d59ef9df8e26d901e98bf3bf8.tar.gz | |
Merge "Fix PEP8 H405 errors"
Diffstat (limited to 'openstackclient/shell.py')
| -rw-r--r-- | openstackclient/shell.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/openstackclient/shell.py b/openstackclient/shell.py index 67eaca55..6aae1a68 100644 --- a/openstackclient/shell.py +++ b/openstackclient/shell.py @@ -330,9 +330,8 @@ class OpenStackShell(app.App): return parser def authenticate_user(self): - """Make sure the user has provided all of the authentication - info we need. - """ + """Verify the required authentication credentials are present""" + self.log.debug('validating authentication options') if self.options.os_token or self.options.os_url: # Token flow auth takes priority |
