summaryrefslogtreecommitdiffstats
path: root/ipalib/dn.py
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2011-11-01 08:58:05 -0400
committerAlexander Bokovoy <abokovoy@redhat.com>2012-01-02 11:51:26 +0300
commit9beb467d98cb16e09fcda5ebbeb27056dfff3a2d (patch)
treed374273454f5fa5627eb1fe83782c437cdbddde2 /ipalib/dn.py
parent46d3abc450db20c3e4c0854dbf9e711f59db3bff (diff)
downloadfreeipa.git-9beb467d98cb16e09fcda5ebbeb27056dfff3a2d.tar.gz
freeipa.git-9beb467d98cb16e09fcda5ebbeb27056dfff3a2d.tar.xz
freeipa.git-9beb467d98cb16e09fcda5ebbeb27056dfff3a2d.zip
Fix attempted write to attribute of read-only object.
Add new class "cachedproperty" for creating property-like attributes that cache the return value of a method call. Also fix few issues in the unit tests to enable them to succeed. ticket 1959
Diffstat (limited to 'ipalib/dn.py')
-rw-r--r--ipalib/dn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/dn.py b/ipalib/dn.py
index dc3119d9..6f2f7deb 100644
--- a/ipalib/dn.py
+++ b/ipalib/dn.py
@@ -1092,7 +1092,7 @@ class DN(object):
return rdns
elif isinstance(value, (tuple, list)):
if len(value) != 2:
- raise ValueError("tuple or list must be 2-valued, not \"%s\"" % (rdn))
+ raise ValueError("tuple or list must be 2-valued, not \"%s\"" % (value))
rdn = RDN(value, first_key_match=self.first_key_match)
return rdn
else: