[Scummvm-git-logs] scummvm-icons master -> 9f18da7393d0338f5ffae941ebd1cde253cf0812

GandalfTheWhite80 noreply at scummvm.org
Sat Mar 5 19:17:25 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-icons' repo located at https://github.com/scummvm/scummvm-icons .

Summary:
9f18da7393 ICONS: fixed language dependency in check gen-set.py


Commit: 9f18da7393d0338f5ffae941ebd1cde253cf0812
    https://github.com/scummvm/scummvm-icons/commit/9f18da7393d0338f5ffae941ebd1cde253cf0812
Author: Stefan (71585967+GandalfTheWhite80 at users.noreply.github.com)
Date: 2022-03-05T20:17:11+01:00

Commit Message:
ICONS: fixed language dependency in check gen-set.py

Changed paths:
    gen-set.py


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




More information about the Scummvm-git-logs mailing list