PiRSquared17 / app-engine-patch

Automatically exported from code.google.com/p/app-engine-patch
0 stars 0 forks source link

Include environment variable for not standard AppEngine instalations #235

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
#aecmd.py
def setup_env(manage_py_env=False):
.
.
.
        # Verify APPENGINE_HOME
        app_engine_home = os.environ.get('APPENGINE_PY_HOME')
        if not (app_engine_home is None):
            app_engine_home = app_engine_home.rstrip('\\')
            paths.append(app_engine_home)

Original issue reported on code.google.com by vendetta...@gmail.com on 24 Oct 2009 at 1:29