mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 08:00:02 -06:00
Make error message in migration plugin unicode.
This commit is contained in:
parent
eb1577686b
commit
93a09b2dd1
@ -63,7 +63,7 @@ def _pre_migrate_user(ldap, pkey, dn, entry_attrs, failed, config, ctx):
|
||||
entry_attrs.setdefault('gidnumber', ctx['def_group_gid'])
|
||||
|
||||
# generate a principal name and check if it isn't already taken
|
||||
principal = '%s@%s' % (pkey, api.env.realm)
|
||||
principal = u'%s@%s' % (pkey, api.env.realm)
|
||||
try:
|
||||
ldap.find_entry_by_attr(
|
||||
'krbprincipalname', principal, 'krbprincipalaux', ['']
|
||||
@ -308,7 +308,7 @@ class migrate_ds(Command):
|
||||
try:
|
||||
ldap.add_entry(dn, entry_attrs)
|
||||
except errors.ExecutionError, e:
|
||||
failed[ldap_obj_name][pkey] = str(e)
|
||||
failed[ldap_obj_name][pkey] = unicode(e)
|
||||
else:
|
||||
migrated[ldap_obj_name].append(pkey)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user