From: Frank Brehm Date: Wed, 18 Nov 2020 16:53:43 +0000 (+0100) Subject: Cosmetic changes X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=515c5ffc15226984d044779b437570823a08dbd1;p=pixelpark%2Fldap-migration.git Cosmetic changes --- diff --git a/lib/ldap_migration/__init__.py b/lib/ldap_migration/__init__.py index 1a89060..79e6575 100644 --- a/lib/ldap_migration/__init__.py +++ b/lib/ldap_migration/__init__.py @@ -37,7 +37,7 @@ from fb_tools.errors import FbAppError from .config import LDAPMigrationConfiguration from .idict import CaseInsensitiveDict -__version__ = '0.6.4' +__version__ = '0.6.5' LOG = logging.getLogger(__name__) CFG_BASENAME = 'ldap-migration.ini' @@ -834,7 +834,7 @@ class LDAPMigrationApplication(BaseApplication): def migrate_structural_entries(self): print() - LOG.info("Migrating all structural from source to target LDAP cluster.") + LOG.info("Migrating all structural entries from source to target LDAP cluster.") self.count_unchanged = 0 self.count_added = 0 @@ -842,6 +842,7 @@ class LDAPMigrationApplication(BaseApplication): self._migrate_entries(self.struct_dns, is_root=True, with_acl=False) + print() total = self.count_unchanged + self.count_added + self.count_modified msg = ( "Performed structural entries: {to} total, {ad} added, {mo} modified, "