diff options
| author | bwarsaw | 1999-01-05 23:01:03 +0000 |
|---|---|---|
| committer | bwarsaw | 1999-01-05 23:01:03 +0000 |
| commit | f462311f8863821e89b85219a59f39744d72499a (patch) | |
| tree | 72797a86677f1c17578fe6ef060bb38ad26ade38 /Mailman/MailList.py | |
| parent | 2d269db580bc725ffd3c1a8035bb0d6724c41aa2 (diff) | |
| download | mailman-f462311f8863821e89b85219a59f39744d72499a.tar.gz mailman-f462311f8863821e89b85219a59f39744d72499a.tar.zst mailman-f462311f8863821e89b85219a59f39744d72499a.zip | |
Save(): Can't use a bare `raise' here, since Python 1.5 doesn't have
it and there are still some 1.5 users out there (thanks Brad
Crittenden for finding this).
Diffstat (limited to 'Mailman/MailList.py')
| -rw-r--r-- | Mailman/MailList.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/MailList.py b/Mailman/MailList.py index 90a590c43..1cdb8002d 100644 --- a/Mailman/MailList.py +++ b/Mailman/MailList.py @@ -693,7 +693,7 @@ class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin, self.LogMsg("error", "Failed config file write '%s'," " old config resurrected." % `status.args`) - raise + Utils.reraise() self.CheckHTMLArchiveDir() def Load(self, check_version = 1): |
