mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
Merge pull request #497 from stikonas/fstrings
Improve support for pre-python 3.12 f-strings.
This commit is contained in:
commit
1ada7a101e
1 changed files with 1 additions and 1 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue