summaryrefslogtreecommitdiff
path: root/bin/update-release-info.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/update-release-info.py')
-rw-r--r--bin/update-release-info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update-release-info.py b/bin/update-release-info.py
index 49f2788c..81e0df5a 100644
--- a/bin/update-release-info.py
+++ b/bin/update-release-info.py
@@ -152,7 +152,7 @@ class UpdateFile(object):
'''
if orig is None: orig = file
try:
- self.content = open(orig, 'rU').read()
+ self.content = open(orig, 'r').read()
except IOError:
# Couldn't open file; don't try to write anything in __del__
self.file = None