[DOCs] Fixed missing f-string marker
This commit is contained in:
parent
72ce833dac
commit
575eade044
|
|
@ -974,7 +974,7 @@ def print_preflights_help(rst):
|
||||||
help, rest = reformat_text(help, ind_size)
|
help, rest = reformat_text(help, ind_size)
|
||||||
if rest:
|
if rest:
|
||||||
help += '\n'+rest
|
help += '\n'+rest
|
||||||
index = ':index:`: <pair: preflights; {n}>` ' if rst else ''
|
index = f':index:`: <pair: preflights; {n}>` ' if rst else ''
|
||||||
print(f'- {extra}**{n}**: {index}{help}.')
|
print(f'- {extra}**{n}**: {index}{help}.')
|
||||||
if options:
|
if options:
|
||||||
print_output_options(n, options, ind_size, 'preflight - '+n)
|
print_output_options(n, options, ind_size, 'preflight - '+n)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue