[Python-modules-commits] [python-social-auth] 01/61: Fix 'QueryDict' object has no attribute 'dicts'
Wolfgang Borgert
debacle at moszumanska.debian.org
Sat Dec 24 15:14:00 UTC 2016
This is an automated email from the git hooks/post-receive script.
debacle pushed a commit to tag v0.2.13
in repository python-social-auth.
commit a7eaa315fdb56dc530fbcecbf64abce44484b5f3
Author: Julian Bez <julian.bez at gmail.com>
Date: Fri Jul 10 18:03:37 2015 +0200
Fix 'QueryDict' object has no attribute 'dicts'
---
social/backends/shopify.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/social/backends/shopify.py b/social/backends/shopify.py
index 35bca80..e09d777 100644
--- a/social/backends/shopify.py
+++ b/social/backends/shopify.py
@@ -43,7 +43,7 @@ class ShopifyOAuth2(BaseOAuth2):
details, *args, **kwargs)
session = self.shopifyAPI.Session(self.data.get('shop').strip())
# Get, and store the permanent token
- token = session.request_token(data['access_token'].dicts[1])
+ token = session.request_token(data['access_token'][0])
data['access_token'] = token
return dict(data)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-social-auth.git
More information about the Python-modules-commits
mailing list