From 73b047268b09a2925bfccc5df97d7f1905d63726 Mon Sep 17 00:00:00 2001 From: Roland Hedberg Date: Mon, 22 Feb 2010 20:33:18 +0100 Subject: [PATCH] Added missing '%' --- src/saml2/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/saml2/client.py b/src/saml2/client.py index 86645b5..66e2f78 100644 --- a/src/saml2/client.py +++ b/src/saml2/client.py @@ -307,7 +307,7 @@ class Saml2Client(object): if not_before > now: # Can't use it yet if not LAX: - raise Exception("Can't use it yet %s <= %s" ( + raise Exception("Can't use it yet %s <= %s" % ( time.mktime(not_before), time.mktime(now))) if not for_me(condition, requestor):