from .ldap import LdapConnectionInfo
-__version__ = '0.2.0'
+__version__ = '0.2.1'
LOG = logging.getLogger(__name__)
return
# -------------------------------------------------------------------------
- def _eval_config_template(self, section_name, section):
+ def _eval_config_template(self, section_name, section): # noqa: C901
if self.verbose > 1:
LOG.debug(_("Checking config section {!r} ...").format(section_name))
# Third party modules
import paramiko
+from paramiko.ssh_exception import SSHException
from fb_tools.common import pp, to_str
from fb_tools.errors import HandlerError, ExpectedHandlerError
# Own modules
from .. import print_section_start, print_section_end
+from ..errors import ExpectedCobblerError
from ..xlate import XLATOR
-__version__ = '0.2.8'
+__version__ = '0.2.9'
LOG = logging.getLogger(__name__)