Patched draft.py for extract mails in the form username at domain. See #621
- Legacy-Id: 2892
This commit is contained in:
parent
3bb83a6e23
commit
db905d3903
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue