* Use the compatible way to handle the exception. You can find the
source code wsgi_app in app.py, and it use the compatible way, so update it
* Fix typo in config.py
* Fix typo in app.py
This commit is contained in:
lord63 2016-02-03 20:49:02 +08:00
parent 22270d0f7d
commit 6d0bbd627c
3 changed files with 3 additions and 3 deletions

View file

@ -222,7 +222,7 @@ class Config(dict):
app.config['IMAGE_STORE_BASE_URL'] = 'http://img.website.com'
image_store_config = app.config.get_namespace('IMAGE_STORE_')
The resulting dictionary `image_store` would look like::
The resulting dictionary `image_store_config` would look like::
{
'type': 'fs',