Merge "Allow int version numbers in the clouds.yaml"

This commit is contained in:
Jenkins 2015-11-08 22:16:00 +00:00 committed by Gerrit Code Review
commit 5daa87eb81

View File

@ -280,7 +280,7 @@ class OpenStackShell(app.App):
for mod in clientmanager.PLUGIN_MODULES:
default_version = getattr(mod, 'DEFAULT_API_VERSION', None)
option = mod.API_VERSION_OPTION.replace('os_', '')
version_opt = self.cloud.config.get(option, default_version)
version_opt = str(self.cloud.config.get(option, default_version))
if version_opt:
api = mod.API_NAME
self.api_version[api] = version_opt