From 66c29c338aca82329270b7dc5bc1f69a4677c5c3 Mon Sep 17 00:00:00 2001 From: Roy <88516395+moraroy@users.noreply.github.com> Date: Sat, 22 Jun 2024 04:54:07 -0700 Subject: [PATCH] Update NSLGameScanner.py --- NSLGameScanner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NSLGameScanner.py b/NSLGameScanner.py index 9253e17..f2470d3 100644 --- a/NSLGameScanner.py +++ b/NSLGameScanner.py @@ -609,6 +609,7 @@ if app_ids and os.path.exists(non_steam_launchers_path): print("NonSteamLaunchers exists at the current path.") # Define the new path of the NonSteamLaunchers folder new_path = os.path.join(compatdata_dir, str(first_app_id)) + print(f"New path for NonSteamLaunchers: {new_path}") # Check if the new path already exists if os.path.exists(new_path): @@ -627,6 +628,7 @@ if app_ids and os.path.exists(non_steam_launchers_path): else: print(f"The directory {current_path} does not exist. Skipping.") + #End of old refactored Code