repeat of unicode/str incompatibility problem

This commit is contained in:
Seth Schoen 2012-11-17 00:32:03 -08:00
parent 466ff0e525
commit 978bc03777

View file

@ -422,7 +422,7 @@ class session(object):
chall.name = "payment"
chall.succeeded = False
# In payment, we send address of form to complete this payment
chall.data.append("%s/%s" % (payment_uri, self.id))
chall.data.append(str("%s/%s" % (payment_uri, self.id)))
def POST(self):
web.header("Content-type", "application/x-protobuf+chocolate")