]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2467] Apply 2 suggestions to 2 files
authorPiotrek Zadroga <piotrek@isc.org>
Wed, 28 Jun 2023 17:11:29 +0000 (17:11 +0000)
committerSlawek Figiel <slawek@isc.org>
Thu, 29 Jun 2023 11:44:29 +0000 (13:44 +0200)
configure.ac
src/bin/shell/kea-shell.in

index 15b070cb1d3d5bdc06addc8521e7834962e58f3b..aa22ea0d319928672fc56a48cc4979d8d276c3b2 100644 (file)
@@ -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,
index b56812d1812488445f85b7b5999070f660b4a53f..d14d383b185c31a0e7950f66e6f862a28110b685 100644 (file)
@@ -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@"