mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
Improve support for pre-python 3.12 f-strings.
This commit is contained in:
parent
3eec99349d
commit
f3553639f9
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")
|
config.write(f"CONFIGURATOR={args.configurator}\n")
|
||||||
if not args.external_sources:
|
if not args.external_sources:
|
||||||
if args.mirrors:
|
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")
|
config.write(f"MIRRORS_LEN={len(args.mirrors)}\n")
|
||||||
else:
|
else:
|
||||||
config.write("MIRRORS_LEN=0\n")
|
config.write("MIRRORS_LEN=0\n")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue