kea-shell is not working when installed from a debian package
The problem is with hardcoded path for importing of kea_conn.
In kea-shell, this should be removed:
sys.path.append('@PKGPYTHONDIR@')
and this:
from kea_conn import CARequest # CAResponse
should be changed to:
from kea.kea_conn import CARequest # CAResponse
Edited by Francis Dupont