From 4063e8e5d51916af1f36af31db425cd1594d83d8 Mon Sep 17 00:00:00 2001 From: Martin Malchow Date: Fri, 11 Mar 2016 14:29:51 +0100 Subject: [PATCH] fix missing comma --- tornado/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tornado/auth.py b/tornado/auth.py index 3062ee366..edc3e5ebe 100644 --- a/tornado/auth.py +++ b/tornado/auth.py @@ -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) ) -- 2.47.2