tools: avoid Python 3 f-string in "generate-docs-nm-property-infos.py"

We also need to build with python2. No f-strings.

Fixes: 8fc7b6df12 ('tools: rework generating documentation from libnm meta data')
This commit is contained in:
Thomas Haller 2022-10-07 21:08:00 +02:00
parent afcfbe9973
commit 70fee1cf46
No known key found for this signature in database
GPG Key ID: 29C2366E4DFC5728

View File

@ -380,7 +380,7 @@ def t_srcdir():
def t_setting_c(name):
return t_srcdir() + f"/src/libnm-core-impl/nm-setting-{name}.c"
return t_srcdir() + "/src/libnm-core-impl/nm-setting-" + name + ".c"
def test_file_location():