2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-02 15:05:16 +00:00

[#2969] fix space in the release version

This caused code blocks in the ARM to have spaces in filenames that in
reality aren't there.
This commit is contained in:
Andrei Pavel
2023-10-10 18:01:53 +03:00
parent 25c5bfbba7
commit 858c8438ff

View File

@@ -34,7 +34,7 @@ with open(config_ac_path) as f:
for line in f.readlines():
if line.startswith('AC_INIT(kea'):
parts = line.split(',')
release = parts[1]
release = parts[1].strip()
# If the first line of the ChangeLog announces release, it means
# that this is the final release.
dash_parts = release.split('-')