From 80c097e1643aa38ed27bd6e8b57e3c22df242483 Mon Sep 17 00:00:00 2001 From: Adnan Maolood Date: Wed, 2 Feb 2022 13:58:57 -0500 Subject: [PATCH] gitsrht/blueprints: Fix variable name --- gitsrht/blueprints/manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitsrht/blueprints/manage.py b/gitsrht/blueprints/manage.py index 223d4f1..54000fe 100644 --- a/gitsrht/blueprints/manage.py +++ b/gitsrht/blueprints/manage.py @@ -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 -- 2.38.4