aboutsummaryrefslogtreecommitdiffstats
path: root/bin/withlist
diff options
context:
space:
mode:
authorbwarsaw <>2003-04-19 04:57:44 +0000
committerbwarsaw <>2003-04-19 04:57:44 +0000
commit1a07013f3b027ea660ad9d6d4d551dd1c92adb6f (patch)
treea2db8059ccd908d7a338a6a613a4cd4107db097c /bin/withlist
parent2915af94a5b9e208ca7a9fd414854017c967179d (diff)
downloadmailman2-1a07013f3b027ea660ad9d6d4d551dd1c92adb6f.tar.gz
mailman2-1a07013f3b027ea660ad9d6d4d551dd1c92adb6f.tar.xz
mailman2-1a07013f3b027ea660ad9d6d4d551dd1c92adb6f.zip
Backport from the trunk, and catalog regeneration.
Diffstat (limited to 'bin/withlist')
-rw-r--r--bin/withlist12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/withlist b/bin/withlist
index a9bd6361..345ff39d 100644
--- a/bin/withlist
+++ b/bin/withlist
@@ -1,19 +1,19 @@
#! @PYTHON@
#
-# Copyright (C) 1998,1999,2000,2001,2002 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2003 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
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
-#
+#
# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
+# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
"""General framework for interacting with a mailing list object.
@@ -105,13 +105,13 @@ As another example, say you wanted to change the password for a particular
user on a particular list. You could put the following function in a file
called `changepw.py':
-from Mailman.Errors import NotAMember
+from Mailman.Errors import NotAMemberError
def changepw(mlist, addr, newpasswd):
try:
mlist.setMemberPassword(addr, newpasswd)
mlist.Save()
- except NotAMember:
+ except NotAMemberError:
print 'No address matched:', addr
and run this from the command line: