Got new ldap connection working using Connectible.connect()

This commit is contained in:
Jason Gerard DeRose
2009-01-28 16:12:49 -07:00
committed by Rob Crittenden
parent 231f0bd65a
commit a0aebd46a1
9 changed files with 48 additions and 38 deletions

View File

@@ -95,14 +95,14 @@ class Command(plugable.Plugin):
XML-RPC and the executed an the nearest IPA server.
"""
params = self.args_options_2_params(*args, **options)
self.info(
self.debug(
'raw: %s(%s)', self.name, ', '.join(self._repr_iter(**params))
)
params = self.normalize(**params)
params = self.convert(**params)
params.update(self.get_default(**params))
self.info(
'processed: %s(%s)', self.name, ', '.join(self._repr_iter(**params))
'%s(%s)', self.name, ', '.join(self._repr_iter(**params))
)
self.validate(**params)
(args, options) = self.params_2_args_options(**params)