From: Douglas Bagnall Date: Thu, 3 Dec 2020 23:34:52 +0000 (+1300) Subject: dbcheck: add docstring for err_odd_userParameters X-Git-Tag: samba-4.14.0rc1~473 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=081d12de529ba89e8eb3930dd3e1cbf394783394;p=thirdparty%2Fsamba.git dbcheck: add docstring for err_odd_userParameters Signed-off-by: Douglas Bagnall Reviewed-by: Noel Power --- diff --git a/python/samba/dbchecker.py b/python/samba/dbchecker.py index 08552e6dc57..c11de3b3a94 100644 --- a/python/samba/dbchecker.py +++ b/python/samba/dbchecker.py @@ -1033,7 +1033,7 @@ newSuperior: %s""" % (str(from_dn), str(to_rdn), str(to_base))) self.report("Corrected doubled-UTF16 encoded userParameters on %s by converting" % (obj.dn)) def err_odd_userParameters(self, obj, attrname): - # This is a truncated userParameters due to a pre 4.1 replication bug + """Fix a truncated userParameters due to a pre 4.1 replication bug""" self.report("ERROR: incorrect userParameters value on object %s (odd length). If you have another working DC that does not give this warning, please run 'samba-tool drs replicate --full-sync --local %s'" % (obj.dn, self.samdb.get_nc_root(obj.dn))) def find_revealed_link(self, dn, attrname, guid):