]> Frank Brehm's Git Trees - pixelpark/ldap-migration.git/commitdiff
Cosmetic changes
authorFrank Brehm <frank.brehm@pixelpark.com>
Wed, 18 Nov 2020 16:53:43 +0000 (17:53 +0100)
committerFrank Brehm <frank.brehm@pixelpark.com>
Wed, 18 Nov 2020 16:53:43 +0000 (17:53 +0100)
lib/ldap_migration/__init__.py

index 1a890609046e317c1035329ededa76094ad9343d..79e6575da2eaf045d053c57373390b6e6c18b261 100644 (file)
@@ -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, "