From 1cbc7cb545db4c5e0be0b02b09ee8ca6927b7582 Mon Sep 17 00:00:00 2001 From: Valtos Date: Mon, 18 Mar 2024 11:14:19 +0300 Subject: [PATCH] Update actions_changelogs_since_last_run.py --- Tools/actions_changelogs_since_last_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/actions_changelogs_since_last_run.py b/Tools/actions_changelogs_since_last_run.py index e2f98311e8..6521b6946d 100755 --- a/Tools/actions_changelogs_since_last_run.py +++ b/Tools/actions_changelogs_since_last_run.py @@ -103,7 +103,7 @@ def diff_changelog(old: dict[str, Any], cur: dict[str, Any]) -> Iterable[Changel Find all new entries not present in the previous publish. """ old_entry_ids = {e["id"] for e in old["Entries"]} - return (e for e in cur["п»їEntries"] if e["id"] not in old_entry_ids) + return (e for e in cur["Entries"] if e["id"] not in old_entry_ids) def get_discord_body(content: str):