diff options
| -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 |
