Skip to content

Commit f355363

Browse files
committed
Improve support for pre-python 3.12 f-strings.
1 parent 3eec993 commit f355363

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rootfs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def create_configuration_file(args):
5555
config.write(f"CONFIGURATOR={args.configurator}\n")
5656
if not args.external_sources:
5757
if args.mirrors:
58-
config.write(f"MIRRORS=\"{" ".join(args.mirrors)}\"\n")
58+
config.write(f'MIRRORS="{" ".join(args.mirrors)}"\n')
5959
config.write(f"MIRRORS_LEN={len(args.mirrors)}\n")
6060
else:
6161
config.write("MIRRORS_LEN=0\n")

0 commit comments

Comments
 (0)