~mdipierro/web2py/devel

« back to all changes in this revision

Viewing changes to gaehandler.py

  • Committer: Massimo Di Pierro
  • Date: 2011-11-26 04:22:24 UTC
  • Revision ID: massimo.dipierro@gmail.com-20111126042224-e4zmnph6x4o0kkwe
some change to calendar

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
    if global_settings.web2py_runtime == 'gae:development':
84
84
        gluon.admin.create_missing_folders()
85
85
 
 
86
    from gluon.custom_import import custom_import_install
 
87
    web2py_path = global_settings.applications_parent # backward compatibility
 
88
    custom_import_install(web2py_path)
 
89
 
86
90
    return gluon.main.wsgibase(env, res)
87
91
 
88
92