diff options
| author | bwarsaw | 2006-05-01 19:04:28 +0000 |
|---|---|---|
| committer | bwarsaw | 2006-05-01 19:04:28 +0000 |
| commit | df7759f0d7c428f7ca213d022c2c608c93d76f6e (patch) | |
| tree | 4a92d1e086461d01f7dfa4a0ca2470efd2dd103c /Mailman/bin/show_qfiles.py | |
| parent | a1c5617a9ec43659739282e9993092b1333430b0 (diff) | |
| download | mailman-df7759f0d7c428f7ca213d022c2c608c93d76f6e.tar.gz mailman-df7759f0d7c428f7ca213d022c2c608c93d76f6e.tar.zst mailman-df7759f0d7c428f7ca213d022c2c608c93d76f6e.zip | |
Repairs
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"): |
