diff options
| author | Josh Kearney <josh@jk0.org> | 2012-12-26 14:22:23 -0600 |
|---|---|---|
| committer | Josh Kearney <josh@jk0.org> | 2013-01-16 11:29:34 -0600 |
| commit | eb1ae2e9f23d618069e5eee7abedbd5a049d2878 (patch) | |
| tree | c296242e1f91256be03157bdab688b28dac46a26 /openstackclient/common/utils.py | |
| parent | 67e413a224d8bec7729ec1aa703c6e4c91ee243b (diff) | |
| download | python-openstackclient-eb1ae2e9f23d618069e5eee7abedbd5a049d2878.tar.gz | |
Adds Glance API v2 support.
Change-Id: Ib0325e62a7e50aa94e852a73f9a2cb95daa8d5f6
Diffstat (limited to 'openstackclient/common/utils.py')
| -rw-r--r-- | openstackclient/common/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/common/utils.py b/openstackclient/common/utils.py index ea8170bc..70555be5 100644 --- a/openstackclient/common/utils.py +++ b/openstackclient/common/utils.py @@ -125,6 +125,6 @@ def get_client_class(api_name, version, version_map): except (KeyError, ValueError): msg = "Invalid %s client version '%s'. must be one of: %s" % ( (api_name, version, ', '.join(version_map.keys()))) - raise exc.UnsupportedVersion(msg) + raise exceptions.UnsupportedVersion(msg) return import_class(client_path) |
