aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/quotes.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/quotes.py b/modules/quotes.py
index 6e114c2d..54311a68 100644
--- a/modules/quotes.py
+++ b/modules/quotes.py
@@ -109,7 +109,8 @@ class Module(ModuleManager.BaseModule):
category_str = category
if search:
- category_str = "%s (%s)" % (category_str, search)
+ category_str = "%s (%s [%d found])" % (category_str, search,
+ len(quotes))
event["stdout"].write("%s: %s" % (category_str, quote))
else:
event["stderr"].write("No matching quotes")