Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0922a56

Browse files
committed
Don't add <...> around mail addresses; they may already be there.
1 parent e79cf32 commit 0922a56

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/faqwiz/faqwiz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def translate(text, pre=0):
8989
if ':' in url:
9090
repl = '<A HREF="%s">%s</A>' % (url, url)
9191
else:
92-
repl = '<A HREF="mailto:%s">&lt;%s&gt;</A>' % (url, url)
92+
repl = '<A HREF="mailto:%s">%s</A>' % (url, url)
9393
else:
9494
repl = url
9595
list.append(repl)

0 commit comments

Comments
 (0)