Fixed an aparent typo in the code

Change-Id: I62f8cc1581379869148b3a293b74c29057101a94
This commit is contained in:
Alex Gaynor
2014-05-23 11:50:05 -05:00
parent 15bec1cde3
commit 8847022ef0

View File

@@ -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,