From: Piotrek Zadroga Date: Wed, 28 Jun 2023 17:11:29 +0000 (+0000) Subject: [#2467] Apply 2 suggestions to 2 files X-Git-Tag: Kea-2.4.0~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8302200548b9fa3aeec58e75ca154a9beddeca1;p=thirdparty%2Fkea.git [#2467] Apply 2 suggestions to 2 files --- diff --git a/configure.ac b/configure.ac index 15b070cb1d..aa22ea0d31 100644 --- a/configure.ac +++ b/configure.ac @@ -1125,7 +1125,7 @@ fi AM_CONDITIONAL([GENERATE_PARSER], [test x$enable_generate_parser != xno]) -# Kea-shell is written in python. It can work with any 3.x. +# Kea-shell is written in python. It can work with any python 3.x version. # We require python only if kea-shell was enabled. It is disabled by default to # not introduce hard dependency on python. AC_ARG_ENABLE(shell, diff --git a/src/bin/shell/kea-shell.in b/src/bin/shell/kea-shell.in index b56812d181..d14d383b18 100644 --- a/src/bin/shell/kea-shell.in +++ b/src/bin/shell/kea-shell.in @@ -25,7 +25,7 @@ from base64 import b64encode sys.path.append('@PKGPYTHONDIR@') import kea_connector3 as kea_connector -from kea_conn import CARequest # CAResponse +from kea_conn import CARequest # CAResponse VERSION = "@PACKAGE_VERSION@"