Whenever I try to run this script with web.py I get the error message
<type 'exceptions.SyntaxError'> at /hello
'return' outside function (app.py, line 19)
Here is my source:
import web
urls = (
'/hello', 'Index',
'/file_upload_form', 'ThatFile'
)
app = web.application(urls, globals())
render = web.template.render('templates/', base = "layout")
class ThatFile(object):
def GET(self):
return render.file_upload_form()
def POST(self):
form = web.input(image = "loc")
image_o = open(form.image,'r')
return render.thatfile(image_o = image_o)
class Index(object):
def GET(self):
return render.hello_form()
def POST(self):
form = web.input(name = "Nobody", greet = None)
greeting = "%s, %s" % (form.greet, form.name)
return render.index(greeting = greeting)
if __name__ == "__main__":
app.run()
I've tried re-indenting the 'returns' but I just get that message.