summaryrefslogtreecommitdiff
path: root/python/samba/upgrade.py
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2015-08-14 16:43:41 +1200
committerMartin Schwenke <martins@samba.org>2015-08-14 10:52:39 +0200
commita431828460a8b069589662ad87e47c61c020eb9c (patch)
tree771068dc3daa1e8c62ff0ed807ef2014c81ba16a /python/samba/upgrade.py
parent5d141a32f34de1773c18f2f7752f495eb933940c (diff)
downloadsamba-a431828460a8b069589662ad87e47c61c020eb9c.tar.gz
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
Diffstat (limited to 'python/samba/upgrade.py')
-rw-r--r--python/samba/upgrade.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/samba/upgrade.py b/python/samba/upgrade.py
index 94b77323124..215ccd39164 100644
--- a/python/samba/upgrade.py
+++ b/python/samba/upgrade.py
@@ -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