diff options
Diffstat (limited to 'Mailman/bin/show_qfiles.py')
| -rw-r--r-- | Mailman/bin/show_qfiles.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/bin/show_qfiles.py b/Mailman/bin/show_qfiles.py index f2ec819c1..f49190b1d 100644 --- a/Mailman/bin/show_qfiles.py +++ b/Mailman/bin/show_qfiles.py @@ -19,6 +19,7 @@ import sys import optparse from cPickle import load +from Mailman import mm_cfg from Mailman.i18n import _ __i18_templates__ = True @@ -36,7 +37,6 @@ Show the contents of one or more Mailman queue files.""")) help=_("Don't print 'helpful' message delimiters.")) opts, args = parser.parse_args() return parser, opts, args - @@ -44,7 +44,7 @@ def main(): parser, opts, args = parseargs() for filename in args: - if not quiet: + if not opts.quiet: print '====================>', filename fp = open(filename) if filename.endswith(".pck"): |
