forked from orbit-oss/flask
Merge branch 'master' of github.com:mitsuhiko/flask
This commit is contained in:
commit
a532568680
2 changed files with 7 additions and 1 deletions
|
|
@ -26,7 +26,12 @@ except ImportError:
|
|||
try:
|
||||
import json
|
||||
except ImportError:
|
||||
json_available = False
|
||||
try:
|
||||
# Google Appengine offers simplejson via django
|
||||
from django.utils import simplejson as json
|
||||
except ImportError:
|
||||
json_available = False
|
||||
|
||||
|
||||
from werkzeug import Headers, wrap_file, is_resource_modified, cached_property
|
||||
from werkzeug.exceptions import NotFound
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue