diff options
author | mjfernez <mjfernez@gmail.com> | 2021-10-16 18:20:46 -0400 |
---|---|---|
committer | mjfernez <mjfernez@gmail.com> | 2021-10-16 18:20:46 -0400 |
commit | 04431658597c9b9ae489be3363c6b9478d946fcd (patch) | |
tree | 60b2d14199805fe67cae2d0b543cf9aae211902e /server.py | |
parent | a7f3d566db39af447f45ba221427094e376ae076 (diff) | |
download | ezcms-04431658597c9b9ae489be3363c6b9478d946fcd.tar.gz |
Turns off jinja caching. Fixes appropriate cache
Diffstat (limited to 'server.py')
-rw-r--r-- | server.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ def setup(): {'COMPRESS_MIMETYPES': siteconfig.COMPRESS_MIMETYPES} ) app.config.update({'RSS_CHANNEL': get_rss_channel()}) - + app.config.update({'TEMPLATES_AUTO_RELOAD': True}) # Setup needs to come first to be compatible with wsgi setup() |