summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Lib/buildtools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Lib/buildtools.py b/Mac/Lib/buildtools.py
index d831610..efc5c47 100644
--- a/Mac/Lib/buildtools.py
+++ b/Mac/Lib/buildtools.py
@@ -78,7 +78,7 @@ def process(template, filename, destname, copy_codefragment,
# Read the source and compile it
# (there's no point overwriting the destination if it has a syntax error)
- fp = open(filename)
+ fp = open(filename, 'rU')
text = fp.read()
fp.close()
try: