mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-09-03 15:35:17 +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():
|
for line in f.readlines():
|
||||||
if line.startswith('AC_INIT(kea'):
|
if line.startswith('AC_INIT(kea'):
|
||||||
parts = line.split(',')
|
parts = line.split(',')
|
||||||
release = parts[1]
|
release = parts[1].strip()
|
||||||
# If the first line of the ChangeLog announces release, it means
|
# If the first line of the ChangeLog announces release, it means
|
||||||
# that this is the final release.
|
# that this is the final release.
|
||||||
dash_parts = release.split('-')
|
dash_parts = release.split('-')
|
||||||
|
Reference in New Issue
Block a user