2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

Fix the issue with CentOS 8 not being recognized

This commit is contained in:
manu
2020-12-03 00:14:40 +01:00
parent 59ba2dd9a1
commit 557d33ced4

2
hammer.py Executable file → Normal file
View File

@@ -219,6 +219,8 @@ def get_system_revision():
revision = platform.release()
if '"' in revision:
revision = revision.replace('"', '')
if '"' in system:
system = system.replace('"', '')
return system.lower(), revision