From d0fcdc9b8c9df6a6e921f7bd9a54866962364d96 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Mon, 16 Sep 2024 11:30:52 -0700 Subject: [PATCH] Revert "umu_run: update error message" This reverts commit a4c3f3795b50131328a0918b97b10abcaef2464a. --- umu/umu_run.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/umu/umu_run.py b/umu/umu_run.py index ea462147..6c1b6699 100755 --- a/umu/umu_run.py +++ b/umu/umu_run.py @@ -182,7 +182,6 @@ def check_env( if os.environ.get("PROTONPATH") == "GE-Proton": get_umu_proton(env, thread_pool) - # UMU-Proton if "PROTONPATH" not in os.environ: os.environ["PROTONPATH"] = "" get_umu_proton(env, thread_pool) @@ -192,8 +191,9 @@ def check_env( # If download fails/doesn't exist in the system, raise an error if not os.environ["PROTONPATH"]: err: str = ( - "$PROTONPATH not set or could not download Proton\n" - "Visit https://github.com/Open-Wine-Components/umu-proton/releases" + "Download failed\n" + "UMU-Proton could not be found in compatibilitytools.d\n" + "Please set $PROTONPATH or visit https://github.com/Open-Wine-Components/umu-proton/releases" ) raise FileNotFoundError(err)