From f212aa207cbed779aeba3d67b2f22a60c4a41ebb Mon Sep 17 00:00:00 2001 From: Seth Schoen Date: Mon, 13 Aug 2012 00:55:36 -0700 Subject: [PATCH] fix typo on format string --- server-ca/daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-ca/daemon.py b/server-ca/daemon.py index 83062f463..28c80a16b 100644 --- a/server-ca/daemon.py +++ b/server-ca/daemon.py @@ -221,7 +221,7 @@ def testchallenge(session): # response to an empty list of challenges (even though # the daemon that put this session on the queue should # also have implicitly guaranteed this). - if debug: print "\t** All challenges satisfied; request %s GRANTED", short(session) + if debug: print "\t** All challenges satisfied; request %s GRANTED" % short(session) r.hset(session, "state", "issue") r.lpush("pending-issue", session) r.publish("requests", "issue")