Skip to content Skip to sidebar Skip to footer

Why Does The Google App Engine Warn Me 'file Referenced By Handler Not Found : Dailybasic.py' Again And Again?

I'm coding with the GAE in python, and I tried to make two script files. So I make the app.yaml like this: application: mathgirlna version: 1 runtime: python api_version: 1 handle

Solution 1:

Remove the '/' in script: /dailybasic.py.

- url: /dailybasic/.*
  script: dailybasic.py
  login: admin

Post a Comment for "Why Does The Google App Engine Warn Me 'file Referenced By Handler Not Found : Dailybasic.py' Again And Again?"