diff options
author | Rob Crittenden <rcritten@redhat.com> | 2007-11-01 13:21:13 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2007-11-01 13:21:13 -0400 |
commit | 10917161a7e724144ce4bacbd5f77f4cdc0e04b9 (patch) | |
tree | 3e09278cb30bef915009cd89f6542c21edd6e9a6 /ipa-admintools | |
parent | a51dd58278126a81b1b923c528488d3580adba39 (diff) | |
download | freeipa-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-findgroup | 2 |
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 |