summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorTomasz Miąsko <tomasz.miasko@gmail.com>2018-12-09 00:00:00 +0000
committerTomasz Miąsko <tomasz.miasko@gmail.com>2018-12-09 20:02:15 +0100
commitd84347ecb4d4e8d5bba4a91d339fec113d52ee6e (patch)
tree7afb5efd3235fd5d01296e76e3376728f3124705 /misc
parent0fdd6210e5559a1d20d832fe41051151959d8b6e (diff)
downloadgobject-introspection-d84347ecb4d4e8d5bba4a91d339fec113d52ee6e.tar.gz
Drop deprecated and redundant universal newline mode
Diffstat (limited to 'misc')
-rw-r--r--misc/update-gtkdoc-tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/update-gtkdoc-tests.py b/misc/update-gtkdoc-tests.py
index 22098430..566d6ac0 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((ERROR, FATAL))
- with io.open(path, 'rU') as f:
+ with io.open(path, 'r') as f:
lines = f.readlines()
chunks = []