summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin McCarthy <kmccarth@redhat.com>2007-08-27 09:49:35 -0700
committerKevin McCarthy <kmccarth@redhat.com>2007-08-27 09:49:35 -0700
commita57fe697a7fbeff0596334fc75289ac378e11c61 (patch)
tree4a24fd07ba421bfdef4b872a691c8eb2457346a4
parent50450d6acb6f79f46aec531a8d8832a45e77ddee (diff)
downloadfreeipa-a57fe697a7fbeff0596334fc75289ac378e11c61.tar.gz
freeipa-a57fe697a7fbeff0596334fc75289ac378e11c61.tar.xz
freeipa-a57fe697a7fbeff0596334fc75289ac378e11c61.zip
Fix python-ldap attribution for cidict.
-rw-r--r--ipa-python/ipautil.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ipa-python/ipautil.py b/ipa-python/ipautil.py
index 74f7cfff6..be6b037fe 100644
--- a/ipa-python/ipautil.py
+++ b/ipa-python/ipautil.py
@@ -25,9 +25,10 @@ class CIDict(dict):
"""
Case-insensitive but case-respecting dictionary.
- Idea from python-ldap cidict, however this version extends 'dict'
- so it works properly with TurboGears.
+ This code is derived from python-ldap's cidict.py module,
+ written by stroeder: http://python-ldap.sourceforge.net/
+ This version extends 'dict' so it works properly with TurboGears.
If you extend UserDict, isinstance(foo, dict) returns false.
"""