From: Guido van Rossum Date: Tue, 7 Jul 1998 22:39:21 +0000 (+0000) Subject: Don't add <...> around mail addresses; they may already be there. X-Git-Tag: v1.5.2a1~331 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0922a569655a0dfdd8fbc953f6d78abe49ba35bd;p=python Don't add <...> around mail addresses; they may already be there. --- diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py index 49af1a8b95..618b62d235 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)