Replying to myself as I eventually managed to fix the "issue". Solution below if anyone ever stumble upon that - if anyone has a suggestion to more elegant solution I would greatly appreciate it :)
On Sunday, 15 September 2013 13:51:24 UTC+1, Jakub M wrote: (...) > app.notfound = notfound > if __name__ == "__main__": app.run() > application = app.wsgifunc() > application.notfound = notfound > Changed to: if __name__ == "__main__": app.run() application = app application.notfound = notfound application = app.wsgifunc() J. -- You received this message because you are subscribed to the Google Groups "web.py" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/webpy. For more options, visit https://groups.google.com/groups/opt_out.
