diff options
author | ng0 <ng0@n0.is> | 2019-10-04 14:03:53 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-10-04 14:03:53 +0000 |
commit | 978e67775574bf2720007d71faafff047d0c9cb3 (patch) | |
tree | a38e79b0d79fd07f1f3e5675b939fa079db9851b | |
parent | b2ad1a45ece15be2be0c2882f095d43b50ce7a88 (diff) | |
download | build-common-978e67775574bf2720007d71faafff047d0c9cb3.tar.gz build-common-978e67775574bf2720007d71faafff047d0c9cb3.tar.bz2 build-common-978e67775574bf2720007d71faafff047d0c9cb3.zip |
actually make it f-strings.
-rw-r--r-- | configure.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py index 68b9176..212bd57 100644 --- a/configure.py +++ b/configure.py @@ -79,8 +79,8 @@ def main(): yarnexe = mylist[1] f = open('config.mk', 'w+') f.writelines(['# this file is autogenerated by ./configure\n', - 'prefix={myprefix}\n', - 'yarnexe={yarnexe}\n']) + f'prefix={myprefix}\n', + f'yarnexe={yarnexe}\n']) f.close() |