From 0922a569655a0dfdd8fbc953f6d78abe49ba35bd Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 7 Jul 1998 22:39:21 +0000 Subject: Don't add <...> around mail addresses; they may already be there. --- Tools/faqwiz/faqwiz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = '%s' % (url, url) else: - repl = '<%s>' % (url, url) + repl = '%s' % (url, url) else: repl = url list.append(repl) -- cgit v0.12