mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
python:samba/upgrade.py Fix format string syntax in error condition
BUG: https://bugzilla.samba.org/show_bug.cgi?id=11436 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Martin Schwenke <martin@meltin.net> Autobuild-User(master): Martin Schwenke <martins@samba.org> Autobuild-Date(master): Fri Aug 14 10:52:39 CEST 2015 on sn-devel-104
This commit is contained in:
parent
5d141a32f3
commit
a431828460
@ -407,7 +407,7 @@ def get_posix_attr_from_ldap_backend(logger, ldb_object, base_dn, user, attr):
|
||||
expression=("(&(objectClass=posixAccount)(uid=%s))"
|
||||
% (user)), attrs=[attr])
|
||||
except ldb.LdbError, e:
|
||||
raise ProvisioningError("Failed to retrieve attribute %s for user %s, the error is: %s", attr, user, e)
|
||||
raise ProvisioningError("Failed to retrieve attribute %s for user %s, the error is: %s" % (attr, user, e))
|
||||
else:
|
||||
if msg.count <= 1:
|
||||
# This will raise KeyError (which is what we want) if there isn't a entry for this user
|
||||
|
Loading…
Reference in New Issue
Block a user