diff options
| author | klm | 1998-10-17 21:27:38 +0000 |
|---|---|---|
| committer | klm | 1998-10-17 21:27:38 +0000 |
| commit | 9a2370a1d3aa79401463f3f8a20f4a738822b441 (patch) | |
| tree | d971319f37d8fcac51c26897496f97fa53ade417 /Mailman/HTMLFormatter.py | |
| parent | e8736406c8450038d24710b4fea750a0a6a420b9 (diff) | |
| download | mailman-9a2370a1d3aa79401463f3f8a20f4a738822b441.tar.gz mailman-9a2370a1d3aa79401463f3f8a20f4a738822b441.tar.zst mailman-9a2370a1d3aa79401463f3f8a20f4a738822b441.zip | |
Diffstat (limited to 'Mailman/HTMLFormatter.py')
| -rw-r--r-- | Mailman/HTMLFormatter.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Mailman/HTMLFormatter.py b/Mailman/HTMLFormatter.py index b5e640f29..7564252be 100644 --- a/Mailman/HTMLFormatter.py +++ b/Mailman/HTMLFormatter.py @@ -151,11 +151,10 @@ class HTMLFormatter: def FormatUmbrellaNotice(self, user, type): if self.umbrella_list: - acct, host = tuple(string.split(user, '@')) return ("(Note - you are subscribing to a list of maillists, so" " the %s notice will be sent to the admin address" - " for your membership, %s%s@%s.)<p>" - % (type, acct, self.umbrella_member_suffix, host)) + " for your membership, %s.)<p>" + % self.GetMemberAdminEmail(name)) else: return "" |
