From 289a1aa9e8a2d190cab211ae48ead92f9e0876b9 Mon Sep 17 00:00:00 2001 From: derrod Date: Fri, 15 May 2020 12:38:27 +0200 Subject: [PATCH] [core] Log if game installation directory does not exist --- legendary/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/legendary/core.py b/legendary/core.py index 7a4b033..6816548 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -562,6 +562,7 @@ class LegendaryCore: # make sure base directory actually exists (but do not create game dir) if not os.path.exists(base_path): + self.log.info(f'"{base_path}" does not exist, creating...') os.makedirs(base_path) install_path = os.path.join(base_path, game_folder)