this is a boolean value, not a string

This commit is contained in:
Seth Schoen 2012-11-17 00:26:23 -08:00
parent f759e26e58
commit 466ff0e525

View file

@ -420,7 +420,7 @@ class session(object):
chall = r.challenge.add()
chall.type = r.Payment
chall.name = "payment"
chall.succeeded = "False"
chall.succeeded = False
# In payment, we send address of form to complete this payment
chall.data.append("%s/%s" % (payment_uri, self.id))