2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

Do not use f-strings in Python system tests

Use str.format() instead of f-strings in Python system tests to enable
them to work on Python 3 versions older than 3.6 as the latter is not
available on some operating systems used in GitLab CI that are still
actively supported (CentOS 6, Debian 9, Ubuntu 16.04).
This commit is contained in:
Michał Kępień
2020-05-21 11:33:11 +02:00
parent 62b8a5e59d
commit 5562c38ffb

View File

@@ -79,9 +79,9 @@ def zone_mtime(zonedir, name):
def zone_keyid(nameserver, zone, key):
with open(f'{nameserver}/{zone}.{key}.id') as f:
with open('{}/{}.{}.id'.format(nameserver, zone, key)) as f:
keyid = f.read().strip()
print(f'{zone}-{key} ID: {keyid}')
print('{}-{} ID: {}'.format(zone, key, keyid))
return keyid