diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-23 11:50:05 -0500 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-23 11:50:05 -0500 |
| commit | 8847022ef08ab1a1826afac5d44f34fe781018b6 (patch) | |
| tree | f7e63b566acc19d17d904b29abbc218af2efb588 /keystoneclient/v3 | |
| parent | 15bec1cde376a116b4a2308db58bbabc2b7f6d87 (diff) | |
| download | python-keystoneclient-8847022ef08ab1a1826afac5d44f34fe781018b6.tar.gz | |
Fixed an aparent typo in the code
Change-Id: I62f8cc1581379869148b3a293b74c29057101a94
Diffstat (limited to 'keystoneclient/v3')
| -rw-r--r-- | keystoneclient/v3/contrib/oauth1/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keystoneclient/v3/contrib/oauth1/core.py b/keystoneclient/v3/contrib/oauth1/core.py index 4820c02..36823f0 100644 --- a/keystoneclient/v3/contrib/oauth1/core.py +++ b/keystoneclient/v3/contrib/oauth1/core.py @@ -57,7 +57,7 @@ class OAuthManagerOptionalImportProxy(object): """ def __getattribute__(self, name): - if name in ('access_tokens', 'comsumers', 'request_tokens'): + if name in ('access_tokens', 'consumers', 'request_tokens'): raise NotImplementedError( 'To use %r oauthlib must be installed' % name) return super(OAuthManagerOptionalImportProxy, |
