From bd63ea1e20440d8b69da74e64d082ade2e894094 Mon Sep 17 00:00:00 2001 From: Mathieu Comandon Date: Sat, 6 Apr 2024 22:01:42 -0700 Subject: [PATCH] Return target directory --- lutris/game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lutris/game.py b/lutris/game.py index 6ddedca45..5ceee11c9 100644 --- a/lutris/game.py +++ b/lutris/game.py @@ -1059,7 +1059,7 @@ class Game(GObject.Object): if not system.path_exists(old_location): logger.warning("Initial location %s does not exist, files may have already been moved.") - return + return target_directory try: shutil.move(old_location, new_location)