From 61b4803bcbf16c7e51d33a1992a868bdc19b7e3b Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Mon, 23 Apr 2012 13:40:52 +0530 Subject: [PATCH] fix in thread id parsing --- py/webnotes/utils/email_lib/receive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/webnotes/utils/email_lib/receive.py b/py/webnotes/utils/email_lib/receive.py index 058e4a78f4..68d2f8305d 100644 --- a/py/webnotes/utils/email_lib/receive.py +++ b/py/webnotes/utils/email_lib/receive.py @@ -91,7 +91,7 @@ class IncomingMail: import re subject = self.mail.get('Subject', '') - return re.findall('(?<=\[)[\w/]+', subject) + return re.findall('(?<=\[)[\w/-]+', subject) def process_part(self, part):