From ba7e0a7c2ea0d9fb8c1e9c07b446a87dff828355 Mon Sep 17 00:00:00 2001 From: katnyaa Date: Tue, 23 May 2017 13:46:29 +0100 Subject: [PATCH] routes: Fix invalid call from previous merge --- nyaa/routes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nyaa/routes.py b/nyaa/routes.py index 3279ab5..42c258b 100644 --- a/nyaa/routes.py +++ b/nyaa/routes.py @@ -840,7 +840,8 @@ def site_rules(): def site_help(): return flask.render_template('help.html') -@app.routes('/xmlns/nyaa', methods=['GET']) + +@app.route('/xmlns/nyaa', methods=['GET']) def xmlns_nyaa(): return flask.render_template('xmlns.html')