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:
Zbigniew Jędrzejewski-Szmek 2019-04-23 14:09:18 +02:00
parent afb9c0c958
commit 155dc16168

View file

@ -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('''};