From 9edc4d6d3009f4e6461ea13fa748aee5f7ab6867 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Sun, 11 Feb 2024 10:28:59 -0800 Subject: [PATCH] gamelauncher.py: update comments --- gamelauncher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamelauncher.py b/gamelauncher.py index ba55860..711102c 100755 --- a/gamelauncher.py +++ b/gamelauncher.py @@ -46,7 +46,7 @@ def setup_pfx(path: str) -> None: """Create a symlink to the WINE prefix and tracked_files file.""" if not (Path(path + "/pfx")).expanduser().is_symlink(): # When creating the symlink, we want it to be in expanded form when passed unexpanded paths - # Example: pfx -> /home/.wine + # Example: pfx -> /home/foo/.wine # NOTE: When parsing a config file, an error can be raised if the prefix doesn't already exist Path(path + "/pfx").expanduser().symlink_to(Path(path).expanduser()) Path(path + "/tracked_files").expanduser().touch()