From 007f1001dabb7c070bceea7af880ccbe20a57b03 Mon Sep 17 00:00:00 2001 From: nogoodidea Date: Mon, 26 Feb 2024 19:39:41 -0500 Subject: [PATCH] hopefully work --- proxstar/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxstar/__init__.py b/proxstar/__init__.py index 770cf58..9a95e26 100644 --- a/proxstar/__init__.py +++ b/proxstar/__init__.py @@ -595,7 +595,7 @@ def create(): disk = request.form['disk'] ## CHECK STUFF DEAR GOD if int(cores) <= 0 or int(memory) <= 0 or int(disk) <= 0: - return 'VM creation with cores and/or mem and/or disk values that are less than 0' 400 + return 'VM creation with cores and/or mem and/or disk values that are less than 0', 400 template = request.form['template'] iso = request.form['iso']