diff options
| author | bwarsaw | 2002-04-11 04:49:23 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-04-11 04:49:23 +0000 |
| commit | 4ca291c652a61eec2017778f64f58d04c5786bcf (patch) | |
| tree | 0c2a916d1e78e95787b9180f9929e8fe31ccd0f8 | |
| parent | 27b13bd0c47578a002c6efed68a10e2b18a51caa (diff) | |
| download | mailman-4ca291c652a61eec2017778f64f58d04c5786bcf.tar.gz mailman-4ca291c652a61eec2017778f64f58d04c5786bcf.tar.zst mailman-4ca291c652a61eec2017778f64f58d04c5786bcf.zip | |
| -rwxr-xr-x | bin/list_members | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/list_members b/bin/list_members index e70f0294d..55a6b76cf 100755 --- a/bin/list_members +++ b/bin/list_members @@ -164,7 +164,7 @@ def main(): try: fp = open(outfile, 'w') except IOError: - print _('Could not open file for writing:'), outfile + print >> sys.stderr, _('Could not open file for writing:'), outfile sys.exit(1) else: fp = sys.stdout @@ -172,7 +172,7 @@ def main(): try: mlist = MailList.MailList(listname, lock=0) except Errors.MMListError, e: - print _('No such list: %(listname)s') + print >> sys.stderr, _('No such list: %(listname)s') sys.exit(1) # Get the lowercased member addresses |
