diff options
author | Guido van Rossum <guido@python.org> | 1998-07-07 22:39:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-07-07 22:39:21 (GMT) |
commit | 0922a569655a0dfdd8fbc953f6d78abe49ba35bd (patch) | |
tree | d7d77041bbd5dab441463a88203d2aa4b22fcb51 | |
parent | e79cf323c72ad26c641f7d9653f08a18860083e2 (diff) | |
download | cpython-0922a569655a0dfdd8fbc953f6d78abe49ba35bd.zip cpython-0922a569655a0dfdd8fbc953f6d78abe49ba35bd.tar.gz cpython-0922a569655a0dfdd8fbc953f6d78abe49ba35bd.tar.bz2 |
Don't add <...> around mail addresses; they may already be there.
-rw-r--r-- | Tools/faqwiz/faqwiz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py index 49af1a8..618b62d 100644 --- a/Tools/faqwiz/faqwiz.py +++ b/Tools/faqwiz/faqwiz.py @@ -89,7 +89,7 @@ def translate(text, pre=0): if ':' in url: repl = '<A HREF="%s">%s</A>' % (url, url) else: - repl = '<A HREF="mailto:%s"><%s></A>' % (url, url) + repl = '<A HREF="mailto:%s">%s</A>' % (url, url) else: repl = url list.append(repl) |