diff --git a/server-ca/payment.py b/server-ca/payment.py index e5950bac6..b3847ecb8 100755 --- a/server-ca/payment.py +++ b/server-ca/payment.py @@ -3,18 +3,15 @@ import web, redis urls = ( - '.*', 'payment' + '/(.*)', 'payment' ) r = redis.Redis() class payment(object): - def GET(self): + def GET(self, stuff): web.header("Content-type", "text/html") - s = "" - try: s = web.data() - except: pass - return "Hello there! " + s + return "Hello there! " + stuff if __name__ == "__main__": app = web.application(urls, globals())