Skip to content

Commit db905d3

Browse files
committed
Patched draft.py for extract mails in the form username at domain. See ietf-tools#621
- Legacy-Id: 2892
1 parent 3bb83a6 commit db905d3

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
@@ -541,6 +541,8 @@ def get_authors(self):
541541
column = line
542542
column = re.sub(" *\(at\) *", "@", column)
543543
column = re.sub(" *\(dot\) *", ".", column)
544+
column = re.sub(" +at +", "@", column)
545+
column = re.sub(" +dot +", ".", column)
544546

545547

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

0 commit comments

Comments
 (0)