Google-app-engine : Import Works Only After A Refresh
After somes problems with a simple import of httplib2 (see my post here), i meet a different problem with the import of gflags. In fact, on dev server, i have an ImportError the f
Solution 1:
Thans @greg.
I added __init__.py
with import gflags
then I modified apiclient/model.py
with from gflags import gflags
instead of just import gflags
.
Post a Comment for "Google-app-engine : Import Works Only After A Refresh"