diff options
| author | bwarsaw | 2001-02-28 05:56:57 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-02-28 05:56:57 +0000 |
| commit | df0503a46f893ca01e1ab5b785ed74c375db2f8b (patch) | |
| tree | b7794e0bbcbfba222003d503c7d9e40eaa586232 | |
| parent | d17b7a1240068d0956df05ddac935bfbc8b8a21c (diff) | |
| download | mailman-df0503a46f893ca01e1ab5b785ed74c375db2f8b.tar.gz mailman-df0503a46f893ca01e1ab5b785ed74c375db2f8b.tar.zst mailman-df0503a46f893ca01e1ab5b785ed74c375db2f8b.zip | |
Fix some typos missed in the last checkin.
| -rwxr-xr-x | bin/clone_member | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/clone_member b/bin/clone_member index 2ae066e86..aa2ee8428 100755 --- a/bin/clone_member +++ b/bin/clone_member @@ -1,6 +1,6 @@ #! /usr/bin/env python # -# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc. +# Copyright (C) 1998,1999,2000,2001 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -98,7 +98,7 @@ def dolist(mlist, options): newowners = {} foundp = 0 for owner in mlist.owner: - if options.lfromaddr == owner.lower() + if options.lfromaddr == owner.lower(): foundp = 1 if options.remove: continue @@ -210,7 +210,7 @@ def main(): try: Utils.ValidateEmail(toaddr) except Errors.EmailAddressError: - usage(1, _('Not a valid email address: %(toaddr)s') + usage(1, _('Not a valid email address: %(toaddr)s')) lfromaddr = fromaddr.lower() options.toaddr = toaddr options.fromaddr = fromaddr |
