diff options
| author | bwarsaw | 2001-10-20 19:17:17 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-10-20 19:17:17 +0000 |
| commit | 0f4ca460318e2c612cfb73669b4f4b6cfdea0692 (patch) | |
| tree | 2e750fce9d625e3226317507db27953d6299090d | |
| parent | 962f813a673923ad0822d113cdf171d9cc01bd0f (diff) | |
| download | mailman-0f4ca460318e2c612cfb73669b4f4b6cfdea0692.tar.gz mailman-0f4ca460318e2c612cfb73669b4f4b6cfdea0692.tar.zst mailman-0f4ca460318e2c612cfb73669b4f4b6cfdea0692.zip | |
HandleForm(): Added (essentially no-op) so that admin.py will
short-circuit exit after processing password change.
| -rw-r--r-- | Mailman/Gui/Passwords.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mailman/Gui/Passwords.py b/Mailman/Gui/Passwords.py index 385cf8843..1ab354edf 100644 --- a/Mailman/Gui/Passwords.py +++ b/Mailman/Gui/Passwords.py @@ -24,3 +24,7 @@ from Mailman.i18n import _ class Passwords: def GetConfigCategory(self): return 'passwords', _('Passwords') + + def HandleForm(self, mlist, cgidata, doc): + # Nothing more needs to be done + pass |
