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:
Henrik Levkowetz 2011-03-24 13:09:01 +00:00
parent 0b8bcfa81d
commit 79a283c3f6

View file

@ -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):