From 34b5b0d56363920d14062ef5816cd70efb145537 Mon Sep 17 00:00:00 2001 From: Pavel Zuna Date: Thu, 2 Jul 2009 15:19:54 +0200 Subject: Fix bug: number of found entries was reported incorrectly in some plugins. --- ipalib/plugins/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/plugins/service.py') diff --git a/ipalib/plugins/service.py b/ipalib/plugins/service.py index 2f42a2b7..03204acb 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) -- cgit