summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-08-20 23:31:13 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-08-21 07:19:50 +0200
commitfe4548755c421886ca492c791096780779ffd26e (patch)
tree6cb684582ab58469fa20b31b0deb9d5247f0b500 /script
parent3341ca73ef8123bff516632d56a2fd9c0282412b (diff)
downloadastroid-git-fe4548755c421886ca492c791096780779ffd26e.tar.gz
Upgrade pylint checks to 2.10.0
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 b11cf006..af0d92f8 100644
--- a/script/bump_changelog.py
+++ b/script/bump_changelog.py
@@ -33,7 +33,7 @@ def main() -> None:
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:
+ with open(DEFAULT_CHANGELOG_PATH, "w", encoding="utf8") as f:
f.write(content)