routes: Fix invalid call from previous merge

This commit is contained in:
katnyaa 2017-05-23 13:46:29 +01:00
parent 48df88ce71
commit ba7e0a7c2e
1 changed files with 2 additions and 1 deletions

View File

@ -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')