summaryrefslogtreecommitdiffstats
path: root/hammer.py
diff options
context:
space:
mode:
authorMichal Nowikowski <godfryd@isc.org>2019-08-12 17:46:51 +0200
committerMichal Nowikowski <godfryd@isc.org>2019-08-13 13:14:39 +0200
commit4b72e2cc22b5ba446c44f16039ff460cc2884544 (patch)
tree4daa8ec5036d5ee5e5b9565396cbe54fb141c5aa /hammer.py
parent[master] Fix building issue with gcc. (diff)
downloadkea-4b72e2cc22b5ba446c44f16039ff460cc2884544.tar.xz
kea-4b72e2cc22b5ba446c44f16039ff460cc2884544.zip
list of api and mes files are independently available in Makefile.am and conf.py now
Diffstat (limited to 'hammer.py')
-rwxr-xr-xhammer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hammer.py b/hammer.py
index 92ac5af789..5deed30329 100755
--- a/hammer.py
+++ b/hammer.py
@@ -162,7 +162,7 @@ def get_system_revision():
"""Return tuple containing system name and its revision."""
system = platform.system()
if system == 'Linux':
- system, revision, _ = platform.dist() # pylit: disable=deprecated-method
+ system, revision, _ = platform.dist() # pylint: disable=deprecated-method
if system == 'debian':
revision = revision.split('.')[0]
elif system == 'redhat':