diff options
author | Michal Nowikowski <godfryd@isc.org> | 2019-08-12 17:46:51 +0200 |
---|---|---|
committer | Michal Nowikowski <godfryd@isc.org> | 2019-08-13 13:14:39 +0200 |
commit | 4b72e2cc22b5ba446c44f16039ff460cc2884544 (patch) | |
tree | 4daa8ec5036d5ee5e5b9565396cbe54fb141c5aa /hammer.py | |
parent | [master] Fix building issue with gcc. (diff) | |
download | kea-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-x | hammer.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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': |