fix missing comma

This commit is contained in:
Martin Malchow 2016-03-11 14:29:51 +01:00
parent ae04e81d91
commit 4063e8e5d5
1 changed files with 1 additions and 1 deletions

View File

@ -998,7 +998,7 @@ class FacebookGraphMixin(OAuth2Mixin):
access_token=session["access_token"],
appsecret_proof=hmac.new(key=client_secret.encode('utf8'),
msg=session["access_token"].encode('utf8'),
digestmod=hashlib.sha256).hexdigest()
digestmod=hashlib.sha256).hexdigest(),
fields=",".join(fields)
)