Patched draft.py for extract mails in the form username at domain. See

- Legacy-Id: 2892
This commit is contained in:
Emilio A. Sánchez López 2011-03-17 16:38:27 +00:00
parent 3bb83a6e23
commit db905d3903

View file

@ -541,6 +541,8 @@ class Draft():
column = line
column = re.sub(" *\(at\) *", "@", column)
column = re.sub(" *\(dot\) *", ".", column)
column = re.sub(" +at +", "@", column)
column = re.sub(" +dot +", ".", column)
# if re.search("^\w+: \w+", column):