commit: f3553639f9c7ea7ddf89675345faaa284a849673
parent 3eec99349ddc854bbdc0f4af005542cbb078360d
Author: Andrius Štikonas <andrius@stikonas.eu>
Date: Tue, 4 Feb 2025 22:49:12 +0000
Improve support for pre-python 3.12 f-strings.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rootfs.py b/rootfs.py
@@ -55,7 +55,7 @@ def create_configuration_file(args):
config.write(f"CONFIGURATOR={args.configurator}\n")
if not args.external_sources:
if args.mirrors:
- config.write(f"MIRRORS=\"{" ".join(args.mirrors)}\"\n")
+ config.write(f'MIRRORS="{" ".join(args.mirrors)}"\n')
config.write(f"MIRRORS_LEN={len(args.mirrors)}\n")
else:
config.write("MIRRORS_LEN=0\n")