diff options
| author | bwarsaw | 2002-12-24 04:46:11 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-12-24 04:46:11 +0000 |
| commit | fd8dbf7435229208523155102b7941aab18df223 (patch) | |
| tree | 41181276dbc959e9fb8e60ca58a1b08459381677 | |
| parent | 82ae59a2435b9f849ce96664603e4f317212334a (diff) | |
| download | mailman-fd8dbf7435229208523155102b7941aab18df223.tar.gz mailman-fd8dbf7435229208523155102b7941aab18df223.tar.zst mailman-fd8dbf7435229208523155102b7941aab18df223.zip | |
addall(): Fixed NameError, closing bug #650711 reported by Cabel
Sasser.
| -rwxr-xr-x | bin/add_members | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/add_members b/bin/add_members index e9e008f6b..ad4f43b87 100755 --- a/bin/add_members +++ b/bin/add_members @@ -170,7 +170,7 @@ def addall(mlist, members, digest, ack, outfp): print >> tee, _('Bad/Invalid email address: blank line') else: print >> tee, _('Bad/Invalid email address: %(member)s') - except MMHostileAddress: + except Errors.MMHostileAddress: print >> tee, _('Hostile address (illegal characters): %(member)s') else: print >> tee, _('Subscribed: %(member)s') |
