Skip to content

Commit 79a283c

Browse files
committed
Add the fix for email addresses from [2892].
- Legacy-Id: 2920 Note: SVN reference [2892] has been migrated to Git commit db905d3
1 parent 0b8bcfa commit 79a283c

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

ietf/utils/draft.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,8 @@ def acronym_match(s, l):
586586
column = line
587587
column = re.sub(" *\(at\) *", "@", column)
588588
column = re.sub(" *\(dot\) *", ".", column)
589+
column = re.sub(" +at +", "@", column)
590+
column = re.sub(" +dot +", ".", column)
589591

590592

591593
# if re.search("^\w+: \w+", column):

0 commit comments

Comments
 (0)