diff options
| author | bwarsaw | 2001-06-27 17:58:44 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-06-27 17:58:44 +0000 |
| commit | df46b0579e14ba8f0baaf655c87195cf519d22c1 (patch) | |
| tree | 687049b818d13c84b3a1897d93d70b7846a3a151 /Mailman/Cgi/subscribe.py | |
| parent | 5bd87f036143f0a1402a1791f57974134f0a009b (diff) | |
| download | mailman-df46b0579e14ba8f0baaf655c87195cf519d22c1.tar.gz mailman-df46b0579e14ba8f0baaf655c87195cf519d22c1.tar.zst mailman-df46b0579e14ba8f0baaf655c87195cf519d22c1.zip | |
Diffstat (limited to 'Mailman/Cgi/subscribe.py')
| -rw-r--r-- | Mailman/Cgi/subscribe.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Mailman/Cgi/subscribe.py b/Mailman/Cgi/subscribe.py index c004e1cda..52630f768 100644 --- a/Mailman/Cgi/subscribe.py +++ b/Mailman/Cgi/subscribe.py @@ -55,7 +55,7 @@ def main(): doc.AddItem(Header(2, _("Error"))) doc.AddItem(Bold(_('No such list <em>%(listname)s</em>'))) print doc.Format() - syslog('error', 'No such list "%s": %s\n' % (listname, e)) + syslog('error', 'No such list "%s": %s\n', listname, e) return # See if the form data has a preferred language set, in which case, use it @@ -159,8 +159,7 @@ def process_form(mlist, doc, cgidata, lang): else: remote = _("unidentified origin") badremote = "\n\tfrom " + remote - syslog("mischief", "Attempt to self subscribe %s:%s" - % (email, badremote)) + syslog('mischief', 'Attempt to self subscribe %s:%s', email, badremote) results += _('You must not subscribe a list to itself!<br>') # If the user did not supply a password, generate one for him |
