From 4d158dac90d86f8e46f7ab23d7888280bb2d22da Mon Sep 17 00:00:00 2001 From: kingbri Date: Sat, 13 Apr 2024 12:24:30 -0400 Subject: [PATCH] Start: Fix when reading from gpu_lib file The wrong variable was being set, so fix that. Signed-off-by: kingbri --- start.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/start.py b/start.py index a0a5245b..edfb4eb9 100644 --- a/start.py +++ b/start.py @@ -45,9 +45,8 @@ def get_install_features(lib_name: str = None): else: # Try getting the GPU lib from file if saved_lib_path.exists(): - print(saved_lib_path) with open(saved_lib_path.resolve(), "r") as f: - lib = f.readline().strip() + lib_name = f.readline().strip() else: # Ask the user for the GPU lib gpu_lib_choices = {