Recognize https:// as URL as well.
diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py
index c2dbd00..d380670 100644
--- a/Tools/faqwiz/faqwiz.py
+++ b/Tools/faqwiz/faqwiz.py
@@ -74,7 +74,7 @@
 def translate(text):
     global translate_prog
     if not translate_prog:
-	url = '\(http\|ftp\)://[^ \t\r\n]*'
+	url = '\(http\|ftp\|https\)://[^ \t\r\n]*'
 	email = '\<[-a-zA-Z0-9._]+@[-a-zA-Z0-9._]+'
 	translate_prog = prog = regex.compile(url + '\|' + email)
     else: