mirror of
https://github.com/systemd/systemd.git
synced 2025-03-19 22:50:17 +03:00
meson: do not use f-strings
Our travis CI still uses python3.5. I'm making this into a separate commit to make it easy to revert later.
This commit is contained in:
parent
afb9c0c958
commit
155dc16168
@ -13,9 +13,9 @@ for line in open(sys.argv[1]):
|
||||
if match:
|
||||
s = match.group(1)
|
||||
if s == 'sd_bus_object_vtable_format':
|
||||
print(f' &{s},')
|
||||
print(' &{},'.format(s))
|
||||
else:
|
||||
print(f' {s},')
|
||||
print(' {},'.format(s))
|
||||
|
||||
print('''};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user