remove url_prefix from the server blueprint

This commit is contained in:
Martin
2016-06-30 17:23:53 +02:00
parent 85224d76d7
commit 032b417e1d
+1 -1
View File
@@ -1,6 +1,6 @@
from flask import Blueprint, jsonify
mod = Blueprint('server', __name__, url_prefix='/')
mod = Blueprint('server', __name__)
@mod.route("/", methods=["GET"])
def status():