From 978e67775574bf2720007d71faafff047d0c9cb3 Mon Sep 17 00:00:00 2001 From: ng0 Date: Fri, 4 Oct 2019 14:03:53 +0000 Subject: actually make it f-strings. --- configure.py | 4 ++-- 1 file 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() -- cgit v1.2.3