Add the fix for email addresses from [2892].
- Legacy-Id: 2920
Note: SVN reference [2892] has been migrated to Git commit db905d3903
This commit is contained in:
parent
0b8bcfa81d
commit
79a283c3f6
|
@ -586,6 +586,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