summaryrefslogtreecommitdiffstats
path: root/ipa-admintools
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2007-11-01 13:21:13 -0400
committerRob Crittenden <rcritten@redhat.com>2007-11-01 13:21:13 -0400
commit10917161a7e724144ce4bacbd5f77f4cdc0e04b9 (patch)
tree3e09278cb30bef915009cd89f6542c21edd6e9a6 /ipa-admintools
parenta51dd58278126a81b1b923c528488d3580adba39 (diff)
downloadfreeipa-10917161a7e724144ce4bacbd5f77f4cdc0e04b9.tar.gz
freeipa-10917161a7e724144ce4bacbd5f77f4cdc0e04b9.tar.xz
freeipa-10917161a7e724144ce4bacbd5f77f4cdc0e04b9.zip
Use proper method of retrieving attributes
Diffstat (limited to 'ipa-admintools')
-rw-r--r--ipa-admintools/ipa-findgroup2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipa-admintools/ipa-findgroup b/ipa-admintools/ipa-findgroup
index cd295a243..a876a0505 100644
--- a/ipa-admintools/ipa-findgroup
+++ b/ipa-admintools/ipa-findgroup
@@ -82,7 +82,7 @@ def main():
if counter > 0:
print "Members:"
for m in members:
- print " " + m['cn'] + ": " + m['dn']
+ print " " + m.getValue('cn') + ": " + m.dn
# blank line between results
print