diff options
| author | bwarsaw | 2003-04-17 03:52:08 +0000 |
|---|---|---|
| committer | bwarsaw | 2003-04-17 03:52:08 +0000 |
| commit | b92fdfa32e8634d4df59e53bab84b0ebdf4bc2a4 (patch) | |
| tree | 95112d39fd0eb1dff1f2c7fabc1e518f6e46bb58 | |
| parent | 9346ecdf378d261aa3c5489a786122fadfa2cf7f (diff) | |
| download | mailman-b92fdfa32e8634d4df59e53bab84b0ebdf4bc2a4.tar.gz mailman-b92fdfa32e8634d4df59e53bab84b0ebdf4bc2a4.tar.zst mailman-b92fdfa32e8634d4df59e53bab84b0ebdf4bc2a4.zip | |
| -rw-r--r-- | bin/withlist | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/withlist b/bin/withlist index a9bd63611..345ff39d9 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: |
