~edwargix/git.sr.ht

80c097e1643aa38ed27bd6e8b57e3c22df242483 — Adnan Maolood 2 years ago ea08854
gitsrht/blueprints: Fix variable name
1 files changed, 1 insertions(+), 1 deletions(-)

M gitsrht/blueprints/manage.py
M gitsrht/blueprints/manage.py => gitsrht/blueprints/manage.py +1 -1
@@ 23,7 23,7 @@ manage = Blueprint('manage', __name__)
def create_GET():
    another = request.args.get("another")
    name = request.args.get("name")
    return render_template("create.html", another=another, repo_name=name)
    return render_template("create.html", another=another, name=name)

@manage.route("/create", methods=["POST"])
@loginrequired