diff options
Diffstat (limited to 'views.py')
-rw-r--r-- | views.py | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -99,7 +99,6 @@ def render_file(path): @app.route("/raw/<path:path>") -@cache.cached() def send_file_from_site(path): """ send_file_from_site - instead of rendering a file within a template @@ -115,7 +114,6 @@ def send_file_from_site(path): @app.route("/static/<path:path>") -@cache.cached() def send_file_from_static(path): """ send_file_from_static - send files from the static directory @@ -130,7 +128,6 @@ def send_file_from_static(path): @app.route("/feed.xml") -@cache.cached() def render_rss_feed(): context = { 'config': siteconfig.rss_channel_config, @@ -138,5 +135,7 @@ def render_rss_feed(): } feed = render_template("feed.xml", **context) response = make_response(feed) - response.headers['Content-Type'] = siteconfig.MIMETYPES.get(".xml") + response.headers['Content-Type'] = str( + siteconfig.MIMETYPES.get(".xml") + ) return response |