From fe52f0457275296492c24dee6e0bc1db0485f904 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Fri, 8 Jan 2021 12:55:58 +0100 Subject: [PATCH] Minor changes --- lib/ldap_migration/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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, " -- 2.39.5