mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
schema: return fingerprint as unicode text
https://fedorahosted.org/freeipa/ticket/4739 Reviewed-By: Jan Cholasta <jcholast@redhat.com>
This commit is contained in:
committed by
Jan Cholasta
parent
75d2f9fe06
commit
a5f48476ad
@@ -727,7 +727,7 @@ class schema(Command):
|
||||
else:
|
||||
fingerprint.update(unicode(entry).encode('utf-8'))
|
||||
|
||||
return fingerprint.hexdigest()[:8]
|
||||
return unicode(fingerprint.hexdigest()[:8])
|
||||
|
||||
def _generate_schema(self, **kwargs):
|
||||
commands = list(self.api.Object.command.search(**kwargs))
|
||||
|
||||
Reference in New Issue
Block a user