diff --git a/umu/umu_dl_util.py b/umu/umu_dl_util.py index 21f79b39..ff53afd1 100644 --- a/umu/umu_dl_util.py +++ b/umu/umu_dl_util.py @@ -236,10 +236,8 @@ def _get_from_steamcompat( Executed when an error occurs when retrieving and setting the latest Proton """ - version: Union[Tuple[str], str] = ( - "GE-Proton" - if environ.get("PROTONPATH") == "GE-Proton" - else ("umu-proton", "ULWGL-Proton") + version: str = ( + "GE-Proton" if environ.get("PROTONPATH") == "GE-Proton" else "UMU-Proton" ) protons: List[Path] = sorted( [proton for proton in steam_compat.glob("*") if proton.name.startswith(version)] @@ -278,7 +276,7 @@ def _get_latest( sums: str = files[0][0] proton: str = tarball[: tarball.find(".tar.gz")] version: str = ( - "GE-Proton" if environ.get("PROTONPATH") == "GE-Proton" else "umu-proton" + "GE-Proton" if environ.get("PROTONPATH") == "GE-Proton" else "UMU-Proton" ) if steam_compat.joinpath(proton).is_dir(): diff --git a/umu/umu_test.py b/umu/umu_test.py index 2267502a..6f580267 100644 --- a/umu/umu_test.py +++ b/umu/umu_test.py @@ -55,7 +55,7 @@ def setUp(self): # Steam compat dir self.test_compat = Path("./tmp.ZssGZoiNod") # umu-proton dir - self.test_proton_dir = Path("umu-proton-5HYdpddgvs") + self.test_proton_dir = Path("UMU-Proton-5HYdpddgvs") # umu-proton release self.test_archive = Path(self.test_cache).joinpath( f"{self.test_proton_dir}.tar.gz"