diff options
author | Simon Warta <[email protected]> | 2017-04-18 23:03:37 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-04-18 23:34:38 +0200 |
commit | 10f2684146b7b0c76d713f6d754b6962c5dfa0b4 (patch) | |
tree | f33eded4ba159558a21c30be47995b90753d1527 /configure.py | |
parent | 6d8d19dcb8dd52fa7b4bd706e909f2386373e89f (diff) |
Improve readability of BOTAN_HOUSE_ECC_CURVE_PEM in build.h
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 4 |
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) |