Skip to content

Commit

Permalink
hopefully work
Browse files Browse the repository at this point in the history
  • Loading branch information
nogoodidea committed Feb 27, 2024
1 parent bbf9fdb commit 007f100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxstar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down

0 comments on commit 007f100

Please sign in to comment.