From 10d8f3d4183f91280730a673c97681cf20f4d4ee Mon Sep 17 00:00:00 2001 From: Patrick Pichon Date: Sun, 24 Nov 2024 18:23:22 +0100 Subject: [PATCH] remove .txt from constraints.txt filename --- Modules/pluginHelpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/pluginHelpers.py b/Modules/pluginHelpers.py index d32e4a473..2f0a05118 100644 --- a/Modules/pluginHelpers.py +++ b/Modules/pluginHelpers.py @@ -210,7 +210,7 @@ def parse_constraints(home_folder): "bellows": "" } - constraints_file = Path(home_folder) / "constraints.txt.txt" + constraints_file = Path(home_folder) / "constraints.txt" with open(constraints_file, 'r') as file: for line in file: # Remove leading/trailing whitespace and newlines