summaryrefslogtreecommitdiff
path: root/novaclient/exceptions.py
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2015-12-10 13:49:14 -0500
committerMorgan Fainberg <morgan.fainberg@gmail.com>2015-12-12 20:39:57 -0800
commit1f11840dd84f3570330d1fcd53d1e8eea5ff7922 (patch)
treedab223bc1dcd0e87aaa2b5356d9ef70737157ae1 /novaclient/exceptions.py
parentc6dd7c7ba9e9fc3dfa45fa568c26529a63b03431 (diff)
downloadpython-novaclient-1f11840dd84f3570330d1fcd53d1e8eea5ff7922.tar.gz
Migrate to keystoneauth from keystoneclient
As a stepping stone to the os-client-config patch, first switch to using keystoneauth, its Session and its argparse registration and plugin loading to sort out any issues with that level of plumbing. The next patch will layer on the ability to use os-client-config for argument processing and client construction. Change-Id: Id681e5eb56b47d06000620f7c92c9b0c5f8d4408
Diffstat (limited to 'novaclient/exceptions.py')
-rw-r--r--novaclient/exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/novaclient/exceptions.py b/novaclient/exceptions.py
index ede19bd8..cbe70108 100644
--- a/novaclient/exceptions.py
+++ b/novaclient/exceptions.py
@@ -231,7 +231,7 @@ _code_map = dict((c.http_status, c) for c in _error_classes)
class InvalidUsage(RuntimeError):
"""This function call is invalid in the way you are using this client.
- Due to the transition to using keystoneclient some function calls are no
+ Due to the transition to using keystoneauth some function calls are no
longer available. You should make a similar call to the session object
instead.
"""