Skip to content

Commit

Permalink
Add log statement when validating GOG ids against umu database
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Aug 4, 2024
1 parent 359a07e commit cbf2944
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tools/check_gamefixes.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ def check_gogfixes(project: Path, url: str, api: ApiEndpoint) -> None:
print(f'Validating GOG app ids against "{host}"...', file=sys.stderr)
for obj in ijson.items(r, 'item'):
if (appid := str(obj['umu_id']).removeprefix('umu-')) in appids:
print(f'Removing GOG app id: "{appid}"', file=sys.stderr)
appids.remove(appid)
if not appids:
break
Expand Down

0 comments on commit cbf2944

Please sign in to comment.