I had the same problem running the dev_appserver (the latest release 1.3.0). it was trying to create: /web2py/applications/<app_name>/errors which existed in my file system. I wrapped the entire for loop in: if not request.env.web2py_runtime_gae: and it works fine.
thanks, christian On Dec 15, 1:27 pm, mdipierro <[email protected]> wrote: > yes but this folders should be created locally, then uploaded. Web2py > check for existance before trying to create them. > > On Dec 15, 2:48 pm, Vidul Petrov <[email protected]> wrote: > > >GAEdoes not allow write access to the file system. > > > On Dec 15, 2:59 am, Richard <[email protected]> wrote: > > > > I uploaded an app toGAEand it triggered an error from trying to > > > create a missing directory: > > > > File "/gluon/main.py", line 432, in wsgibase > > > os.mkdir(path) > > > AttributeError: 'module' object has no attribute 'mkdir' > > > > I have already run the app locally before uploading, so all the > > > directories exist. > > > I am using 1.74.1, and as a temporary solution am catching and > > > ignoring the exception. > > -- You received this message because you are subscribed to the Google Groups "web2py-users" 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/web2py?hl=en.

