From: Martin Malchow Date: Fri, 11 Mar 2016 13:29:51 +0000 (+0100) Subject: fix missing comma X-Git-Tag: v4.4.0b1~43^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4063e8e5d51916af1f36af31db425cd1594d83d8;p=thirdparty%2Ftornado.git fix missing comma --- 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) )