From 9ffbcc73ae6767ab30c5db767d0231316d9163b0 Mon Sep 17 00:00:00 2001 From: Rilic Date: Sun, 16 Jul 2023 16:47:16 +0100 Subject: [PATCH] De-indent else in core selection loop --- src/importer/sources/retroarch_source.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/importer/sources/retroarch_source.py b/src/importer/sources/retroarch_source.py index 189a1e8..11da224 100644 --- a/src/importer/sources/retroarch_source.py +++ b/src/importer/sources/retroarch_source.py @@ -58,9 +58,9 @@ class RetroarchSourceIterator(SourceIterator): ): if core_path != "DETECT": break - else: - logging.warning("Cannot find core for: %s", str(item["path"])) - continue + else: + logging.warning("Cannot find core for: %s", str(item["path"])) + continue # Build game game_title = item["label"].split("(", 1)[0]