From f3553639f9c7ea7ddf89675345faaa284a849673 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Tue, 4 Feb 2025 22:49:12 +0000 Subject: [PATCH] Improve support for pre-python 3.12 f-strings. --- rootfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs.py b/rootfs.py index 7f6b6cd2..a9802a92 100755 --- 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")