diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2020-11-07 08:41:42 +0100 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2020-11-07 08:57:06 +0100 |
commit | 5f966b0b8d61e2abf003439b2f93a9bd19be798c (patch) | |
tree | 530128d2a9ee1a0b4cd3c9702d5de5862943aa1f /misc/update-gtkdoc-tests.py | |
parent | 19c67f77e23cf80da957bfa0b28c1b31d81339f0 (diff) | |
download | gobject-introspection-5f966b0b8d61e2abf003439b2f93a9bd19be798c.tar.gz |
Always pass an encoding to open() using text mode
Otherwise we'll end up using the locale encoding. While it's usually utf-8,
that's not the case on Windows.
There is one place where a file with filenames is passed, not sure there
so I left it and passed a explicit None.
Diffstat (limited to 'misc/update-gtkdoc-tests.py')
-rw-r--r-- | misc/update-gtkdoc-tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/update-gtkdoc-tests.py b/misc/update-gtkdoc-tests.py index c182fc11..6f45e348 100644 --- a/misc/update-gtkdoc-tests.py +++ b/misc/update-gtkdoc-tests.py @@ -191,7 +191,7 @@ if __name__ == '__main__': writer = GtkDocCommentBlockWriter(indent=True) logger.enable_warnings(True) - with io.open(path, 'r') as f: + with io.open(path, 'r', encoding='utf-8') as f: lines = f.readlines() chunks = [] |