Commit 447e4f9f authored by Bradley Griffiths's avatar Bradley Griffiths

Catch import error on AppEngine.

pkg_resources is unavailable in the AppEngine SDK.
parent 5f1b2d88
__import__('pkg_resources').declare_namespace(__name__)
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
pass
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment