summaryrefslogtreecommitdiffstats
path: root/ipapython/ipaldap.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipapython/ipaldap.py')
-rw-r--r--ipapython/ipaldap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipapython/ipaldap.py b/ipapython/ipaldap.py
index cebf8695..47bddec3 100644
--- a/ipapython/ipaldap.py
+++ b/ipapython/ipaldap.py
@@ -422,7 +422,7 @@ class IPASimpleLDAPObject(object):
try:
return target_type(val)
except Exception, e:
- msg = 'unable to convert the attribute "%s" value "%s" to type %s' % (attr, val, target_type)
+ msg = 'unable to convert the attribute %r value %r to type %s' % (attr, val, target_type)
self.log.error(msg)
raise ValueError(msg)
elif isinstance(val, list):