From 9f18da7393d0338f5ffae941ebd1cde253cf0812 Mon Sep 17 00:00:00 2001 From: Stefan <71585967+GandalfTheWhite80@users.noreply.github.com> Date: Sat, 5 Mar 2022 20:17:11 +0100 Subject: [PATCH] ICONS: fixed language dependency in check gen-set.py --- gen-set.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen-set.py b/gen-set.py index 364a4c7..0bf68c2 100644 --- a/gen-set.py +++ b/gen-set.py @@ -250,7 +250,7 @@ def is_scummvmicons_repo(output_showorigin: list) -> bool: """ Checks if the local repo is a scummvm-icons repo""" for line in output_showorigin: # should be the correct repo - if 'Fetch URL: https://github.com/scummvm/scummvm-icons' in line.decode(ENCODING): + if ': https://github.com/scummvm/scummvm-icons' in line.decode(ENCODING): return True return False