Browse Source

Merge branch 'master' of github.com:mitsuhiko/flask

pull/112/head
Armin Ronacher 15 years ago
parent
commit
a532568680
  1. 1
      AUTHORS
  2. 7
      flask/helpers.py

1
AUTHORS

@ -24,4 +24,5 @@ Patches and Suggestions
- Sebastien Estienne
- Simon Sapin
- Stephane Wirtel
- Thomas Schranz
- Zhao Xiaohong

7
flask/helpers.py

@ -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…
Cancel
Save