summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/service.py
diff options
context:
space:
mode:
authorPavel Zuna <pzuna@redhat.com>2009-07-02 15:19:54 +0200
committerRob Crittenden <rcritten@redhat.com>2009-07-02 13:33:05 -0400
commit34b5b0d56363920d14062ef5816cd70efb145537 (patch)
treeedb58efbf7afa3e5d5e0c9c096fdc38c418b43d6 /ipalib/plugins/service.py
parent537ba4034d6d5af77b13ff0d954247bb39b1fa5a (diff)
downloadfreeipa-34b5b0d56363920d14062ef5816cd70efb145537.tar.gz
freeipa-34b5b0d56363920d14062ef5816cd70efb145537.tar.xz
freeipa-34b5b0d56363920d14062ef5816cd70efb145537.zip
Fix bug: number of found entries was reported incorrectly in some plugins.
Diffstat (limited to 'ipalib/plugins/service.py')
-rw-r--r--ipalib/plugins/service.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/service.py b/ipalib/plugins/service.py
index 2f42a2b70..03204acb3 100644
--- a/ipalib/plugins/service.py
+++ b/ipalib/plugins/service.py
@@ -305,7 +305,7 @@ class service_find(crud.Search):
textui.print_entry(entry_attrs)
textui.print_plain('')
textui.print_count(
- len(result), '%i service matched.', '%i services matched.'
+ len(entries), '%i service matched.', '%i services matched.'
)
if truncated:
textui.print_dashed('These results are truncated.', below=False)