logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>
commit: 1ada7a101ebc381ee2336e4dc2da52987aaf5258
parent 3eec99349ddc854bbdc0f4af005542cbb078360d
Author: Samuel Tyler <fosslinux@aussies.space>
Date:   Wed,  5 Feb 2025 10:57:29 +1100

Merge pull request #497 from stikonas/fstrings

Improve support for pre-python 3.12 f-strings.

Diffstat:

Mrootfs.py2+-
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")