summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-15 09:13:01 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-15 09:13:01 -0400
commitaee7965b7f055ca9eb9c730e321354a980fe258e (patch)
tree652d6cf26457d13e298a1c8eb95516b7d12cfd72
parentba46a36ef597602de205016eba9aae1393bb547b (diff)
downloadaskbot-aee7965b7f055ca9eb9c730e321354a980fe258e.tar.gz
askbot-aee7965b7f055ca9eb9c730e321354a980fe258e.tar.bz2
askbot-aee7965b7f055ca9eb9c730e321354a980fe258e.zip
bugfix
-rw-r--r--askbot/deps/django_authopenid/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/deps/django_authopenid/util.py b/askbot/deps/django_authopenid/util.py
index 6e19db6a..024dbf09 100644
--- a/askbot/deps/django_authopenid/util.py
+++ b/askbot/deps/django_authopenid/util.py
@@ -768,7 +768,7 @@ class OAuthConnection(object):
def get_access_token(self, oauth_token=None, oauth_verifier=None):
"""returns data as returned upon visiting te access_token_url"""
- client = self.get_client(self, oauth_token, oauth_verifier)
+ client = self.get_client(oauth_token, oauth_verifier)
url = self.parameters['access_token_url']
#there must be some provider-specific post-processing
return self.send_request(client = client, url=url, method='GET')