From: Frank Brehm Date: Fri, 8 Jan 2021 11:55:58 +0000 (+0100) Subject: Minor changes X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=fe52f0457275296492c24dee6e0bc1db0485f904;p=pixelpark%2Fldap-migration.git Minor changes --- diff --git a/lib/ldap_migration/__init__.py b/lib/ldap_migration/__init__.py index 8513f50..67c0fdc 100644 --- a/lib/ldap_migration/__init__.py +++ b/lib/ldap_migration/__init__.py @@ -1910,7 +1910,7 @@ class LDAPMigrationApplication(BaseApplication): src_dn = self.group_entries[tgt_dn]['src_dn'] object_classes = self.group_entries[tgt_dn]['object_classes'] - msg = "Trying to migrate group entry {src!} -> {tgt!r} ...".format(src=src_dn, tgt=tgt_dn) + msg = "Trying to migrate group entry {src!r} -> {tgt!r} ...".format(src=src_dn, tgt=tgt_dn) LOG.debug(msg) return True @@ -1962,8 +1962,8 @@ class LDAPMigrationApplication(BaseApplication): print(self.colored(' * {:>5} modified'.format(self.count_modified), 'GREEN')) print(self.colored(' * {:>5} unchanged'.format(self.count_unchanged), 'GREEN')) print(self.colored(' * {:>5} migrated groups'.format(count_migrated_groups), 'GREEN')) - print(self.colored(' * {:>5} ignored groups'.format(count_groups), 'CYAN')) - print(self.colored(' * {:>5} ignored entries'.format(count_ignored), 'CYAN')) + print(self.colored(' * {:>5} ignored groups'.format(count_groups), 'AQUA')) + print(self.colored(' * {:>5} ignored entries'.format(count_ignored), 'AQUA')) msg = ( "Performed all entries: {to} total, {ad} added, {mo} modified, " "{un} unchanged, {mg} migrated groups, {g} ignored groups, "