diff --git a/bin/srv.py b/bin/srv.py index 3edfb5a..0291472 100644 --- a/bin/srv.py +++ b/bin/srv.py @@ -225,6 +225,10 @@ def send_static(path): def send_favicon(): return send_from_directory(STATIC, 'favicon.ico') +@app.route('/malformed-response.html') +def send_malformed(): + return send_from_directory(STATIC, 'malformed-response.html') + @app.route("/") @app.route("/") def wttr(location = None):