From 737db08fa6685c167d95942ec713bfe29da7e751 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Wed, 28 Jan 2015 14:31:16 -0300 Subject: [PATCH] test.. --- openid_provider/lib/endpoints/authorize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openid_provider/lib/endpoints/authorize.py b/openid_provider/lib/endpoints/authorize.py index f12ac97..c6796b3 100644 --- a/openid_provider/lib/endpoints/authorize.py +++ b/openid_provider/lib/endpoints/authorize.py @@ -97,7 +97,7 @@ class AuthorizeEndpoint(object): code.user = self.request.user code.client = self.client code.code = uuid.uuid4().hex - code.expires_at = timezone.now() + timedelta(seconds=60*10) # TODO: Add this into settings. + code.expires_at = timezone.now() + timedelta(seconds=60*10) # TODO: Add this into settings. code.scope = self.params.scope code.save()