diff --git a/server-ca/payment.py b/server-ca/payment.py
index f500f09f7..767afed24 100755
--- a/server-ca/payment.py
+++ b/server-ca/payment.py
@@ -30,11 +30,11 @@ class payment(object):
def GET(self, session):
web.header("Content-type", "text/html")
if len(session) != 64 or not all(hexdigit(s) for s in session):
- return "Attempt to process payment for invalid session."
+ return "
Oops!
Attempt to process payment for invalid session."
if session not in r or r.hget(session, "live") != "True":
- return "Attempt to process payment for invalid session."
+ return "Oops!
Attempt to process payment for invalid session."
if r.hget(session, "state") != "payment":
- return "Attempt to process payment for session not expecting it."
+ return "Oops!
Attempt to process payment for session that was not expecting it."
r.publish("payments", session)
names = r.lrange("%s:names" % session, 0, -1)
names_list = '' + "\n".join("- %s
" % n for n in names) + '
'