diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-03-14 14:51:57 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-03-14 14:51:57 +0000 |
| commit | 7449dae40a0391ea85d037703ff58e941afd7f8a (patch) | |
| tree | c57cb6cc4a63315ac5f8f3593dabc689acef1047 /openstackclient/shell.py | |
| parent | 6abed7a471c5df3da1f455d84c50ab425448336c (diff) | |
| parent | dc7e4fc15d80eed5a814f0b87e1860f0cd86c2ee (diff) | |
| download | python-openstackclient-7449dae40a0391ea85d037703ff58e941afd7f8a.tar.gz | |
Merge "Fix dict.keys() compatibility for python 3"
Diffstat (limited to 'openstackclient/shell.py')
| -rw-r--r-- | openstackclient/shell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/shell.py b/openstackclient/shell.py index 53e9be08..7750f2a3 100644 --- a/openstackclient/shell.py +++ b/openstackclient/shell.py @@ -355,7 +355,7 @@ class OpenStackShell(app.App): self.log.warning( "%s version %s is not in supported versions %s" % (api, version_opt, - ', '.join(mod.API_VERSIONS.keys()))) + ', '.join(list(mod.API_VERSIONS.keys())))) # Command groups deal only with major versions version = '.v' + version_opt.replace('.', '_').split('_')[0] |
