2011/2/12 W. Martin Borgert <[email protected]>: > Hi, > > how to switch off the web.py reloader entirely? > > When I'm testing the application and editing in the same moment, > it never works correctly for me, so I just want to get rid of it.
Pass autoreload=False to your application or try setting: web.config.debug = False before creating your application. -- You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/webpy?hl=en.
