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:
@@ -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('-')
|
||||
|
Reference in New Issue
Block a user