summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin/list_lists3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/list_lists b/bin/list_lists
index dfa95f563..b3ce63b5f 100644
--- a/bin/list_lists
+++ b/bin/list_lists
@@ -96,10 +96,11 @@ def main():
print 'No matching mailing lists found'
return
+ print len(mlists), 'matching mailing lists found:'
format = '%%%ds - %%.%ds' % (longest, 77 - longest)
for mlist in mlists:
description = mlist.description or '[no description available]'
- print format % (mlist.real_name, description)
+ print ' ', format % (mlist.real_name, description)
if __name__ == '__main__':