aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py
index 7072584fd..d62b6abd8 100755
--- a/configure.py
+++ b/configure.py
@@ -1743,8 +1743,8 @@ class HouseEccCurve(object):
with open(filepath) as f:
lines = [line.rstrip() for line in f]
for ndx, _ in enumerate(lines):
- lines[ndx] = ''.join(('\"', lines[ndx], '\" \\', '\n'))
- return ''.join(lines)
+ lines[ndx] = ' \"%s\"' % lines[ndx]
+ return "\\\n" + ' \\\n'.join(lines)
except IOError:
raise UserError("Error reading file '%s'" % filepath)