summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-08-02 12:21:02 +0200
committerGitHub <noreply@github.com>2021-08-02 12:21:02 +0200
commitdaf4f1af5c04639f98e36c593667032dc23679ab (patch)
tree443442b702595e25a5ce83a48a0874a764f9041e /script
parentd89e05435d84cc046dc22fd6e516c4ab80593453 (diff)
downloadastroid-git-daf4f1af5c04639f98e36c593667032dc23679ab.tar.gz
Update pylint to 2.9.6 (#1114)
* Update pylint to v2.9.6 * Code updates
Diffstat (limited to 'script')
-rw-r--r--script/bump_changelog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/bump_changelog.py b/script/bump_changelog.py
index be8d00a1..2745d0ce 100644
--- a/script/bump_changelog.py
+++ b/script/bump_changelog.py
@@ -30,7 +30,7 @@ def main() -> None:
logging.debug(f"Launching bump_changelog with args: {args}")
if "dev" in args.version:
return
- with open(DEFAULT_CHANGELOG_PATH) as f:
+ with open(DEFAULT_CHANGELOG_PATH, encoding="utf-8") as f:
content = f.read()
content = transform_content(content, args.version)
with open(DEFAULT_CHANGELOG_PATH, "w") as f: