Skip to content

Commit

Permalink
Merge pull request #497 from stikonas/fstrings
Browse files Browse the repository at this point in the history
Improve support for pre-python 3.12 f-strings.
  • Loading branch information
fosslinux authored Feb 4, 2025
2 parents 3eec993 + f355363 commit 1ada7a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rootfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 1ada7a1

Please sign in to comment.