Skip to content

Commit 3774344

Browse files
author
Richard Jones
committed
clean up
1 parent 9991a98 commit 3774344

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

roundup/mailgw.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class node. Any parts of other types are each stored in separate files
7373
an exception, the original message is bounced back to the sender with the
7474
explanatory message given in the exception.
7575
76-
$Id: mailgw.py,v 1.185 2007-03-26 04:04:42 richard Exp $
76+
$Id: mailgw.py,v 1.186 2007-03-26 06:19:55 richard Exp $
7777
"""
7878
__docformat__ = 'restructuredtext'
7979

@@ -1009,10 +1009,10 @@ def handle_message(self, message):
10091009
# figure how much we should muck around with the email body
10101010
keep_citations = config['MAILGW_KEEP_QUOTED_TEXT']
10111011
keep_body = config['MAILGW_LEAVE_BODY_UNCHANGED']
1012-
blank_line = re.compile(r'%s' % config['MAILGW_BLANKLINE_RE'])
1013-
eol = re.compile(r'%s' % config['MAILGW_EOL_RE'])
1014-
signature = re.compile(r'%s' % config['MAILGW_SIGN_RE'])
1015-
original_msg = re.compile(r'%s' % config['MAILGW_ORIGMSG_RE'])
1012+
blank_line = re.compile(config['MAILGW_BLANKLINE_RE'])
1013+
eol = re.compile(config['MAILGW_EOL_RE'])
1014+
signature = re.compile(config['MAILGW_SIGN_RE'])
1015+
original_msg = re.compile(config['MAILGW_ORIGMSG_RE'])
10161016

10171017
# parse the body of the message, stripping out bits as appropriate
10181018
summary, content = parseContent(content, keep_citations,

0 commit comments

Comments
 (0)