From 27f88ffa47472f80643c716d189503cc438b65da Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 22 Apr 2014 08:42:47 +0200 Subject: [PATCH] Don't break https:// urls --- qutebrowser/config/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config/config.py b/qutebrowser/config/config.py index 6f86e8a5b..5d57ae054 100644 --- a/qutebrowser/config/config.py +++ b/qutebrowser/config/config.py @@ -146,7 +146,7 @@ class Config(QObject): lines = [] seclines = configdata.SECTION_DESC[secname].splitlines() for secline in seclines: - if 'http://' in secline: + if 'http://' in secline or 'https://' in secline: lines.append('# ' + secline) else: lines += wrapper.wrap(secline)