diff options
| author | bwarsaw | 2002-02-27 00:08:24 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-02-27 00:08:24 +0000 |
| commit | 797a7934e95b74a858bc04be20a7064741420f80 (patch) | |
| tree | fd34c56c3961452584508eedd29fd297ac80362f | |
| parent | f2fa308e9145041962ac1677e96a06ae1fb31917 (diff) | |
| download | mailman-797a7934e95b74a858bc04be20a7064741420f80.tar.gz mailman-797a7934e95b74a858bc04be20a7064741420f80.tar.zst mailman-797a7934e95b74a858bc04be20a7064741420f80.zip | |
| -rw-r--r-- | Mailman/Gui/Passwords.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Mailman/Gui/Passwords.py b/Mailman/Gui/Passwords.py index 1ab354edf..a3cf6b8e4 100644 --- a/Mailman/Gui/Passwords.py +++ b/Mailman/Gui/Passwords.py @@ -1,4 +1,4 @@ -# Copyright (C) 2001 by the Free Software Foundation, Inc. +# Copyright (C) 2001,2002 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 @@ -18,13 +18,14 @@ """ from Mailman.i18n import _ +from Mailman.Gui.GUIBase import GUIBase -class Passwords: +class Passwords(GUIBase): def GetConfigCategory(self): return 'passwords', _('Passwords') - def HandleForm(self, mlist, cgidata, doc): + def handleForm(self, mlist, category, subcat, cgidata, doc): # Nothing more needs to be done pass |
