summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2019-04-23 14:09:18 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2019-04-23 22:59:19 +0200
commit155dc16168fd98a8bfddcf7fd4ceba472d44db51 (patch)
tree3f9ff479fe19200646ed9020cc5cad54de9caa1a
parentafb9c0c95817e687d27b9fa21d4e7db6075c583d (diff)
downloadsystemd-155dc16168fd98a8bfddcf7fd4ceba472d44db51.tar.gz
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.
-rwxr-xr-xsrc/test/generate-sym-test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/generate-sym-test.py b/src/test/generate-sym-test.py
index 2510809452..4d358b8e34 100755
--- a/src/test/generate-sym-test.py
+++ b/src/test/generate-sym-test.py
@@ -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('''};