diff options
author | Peter Palfrader <peter@palfrader.org> | 2006-06-05 02:07:38 +0000 |
---|---|---|
committer | weasel <weasel@bc3d92e2-beff-0310-a7cd-cc87d7ac0ede> | 2006-06-05 02:07:38 +0000 |
commit | 24123ccc2327930d3057cb667cd32a96ee34242e (patch) | |
tree | 18e0241cd011e8dadd7dda6edc9186cd21b2e4ad | |
parent | c564c0764ca1eba3e779113d54d40d5ee98eca24 (diff) |
r166@danube: weasel | 2006-06-05 04:07:34 +0200
Use proper quote signs
git-svn-id: svn+ssh://asteria.noreply.org/svn/weaselutils/trunk@122 bc3d92e2-beff-0310-a7cd-cc87d7ac0ede
-rwxr-xr-x | split-mailman-mails-and-discard-and-save | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/split-mailman-mails-and-discard-and-save b/split-mailman-mails-and-discard-and-save index ffb4be4..6a442b2 100755 --- a/split-mailman-mails-and-discard-and-save +++ b/split-mailman-mails-and-discard-and-save @@ -89,7 +89,7 @@ def process_mail(filename) mail_error.header['From'] = FROM mail_error.header['To'] = ERRORSTO mail_error.header['Subject'] = "approving #{cookie} failed" - mail_error.body = 'Sorry, this script does not have the admin/moderator password for #{request_address}.' + mail_error.body = 'Sorry, this script does not have the admin/moderator password for'."\n#{request_address}." store_in_maildir(OUTBOX, mail_error) else mail_request = RMail::Message.new() |