From 3afd594273f659056f15b6e6a1a45b68824bf113 Mon Sep 17 00:00:00 2001 From: Douglas Bagnall Date: Fri, 4 Dec 2020 11:56:00 +1300 Subject: [PATCH] dbcheck: fix documentation for err_duplicate_values Signed-off-by: Douglas Bagnall Reviewed-by: Noel Power --- python/samba/dbchecker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/samba/dbchecker.py b/python/samba/dbchecker.py index 339af01cb1b..69fcc403008 100644 --- a/python/samba/dbchecker.py +++ b/python/samba/dbchecker.py @@ -537,7 +537,7 @@ newSuperior: %s""" % (str(from_dn), str(to_rdn), str(to_base))) self.report("Normalised attribute %s" % attrname) def err_duplicate_values(self, dn, attrname, dup_values, values): - '''fix attribute normalisation errors''' + '''fix duplicate attribute values''' self.report("ERROR: Duplicate values for attribute '%s' in '%s'" % (attrname, dn)) self.report("Values contain a duplicate: [%s]/[%s]!" % (','.join(dump_attr_values(dup_values)), ','.join(dump_attr_values(values)))) if not self.confirm_all("Fix duplicates for '%s' from '%s'?" % (attrname, dn), 'fix_all_duplicates'): -- 2.11.4.GIT