modify mistake in comment

init should be v3.0 rather than 2.0 in keystoneclient/v3/client.py

Change-Id: I54bcbaed38edcc9c0fb0a0138c1ee38492fd933d
This commit is contained in:
Wu Wenxiang
2013-04-17 10:50:09 -07:00
parent 5c37d85944
commit aaf3aa977f

View File

@@ -63,7 +63,7 @@ class Client(client.Client):
"""
def __init__(self, endpoint=None, **kwargs):
""" Initialize a new client for the Keystone v2.0 API. """
""" Initialize a new client for the Keystone v3.0 API. """
super(Client, self).__init__(endpoint=endpoint, **kwargs)
self.credentials = credentials.CredentialManager(self)