From 1961980b02aec9ba4b563b3e7d9e71176c9a8cd6 Mon Sep 17 00:00:00 2001 From: exw4938 Date: Sun, 16 Sep 2018 19:20:33 -0400 Subject: [PATCH] Added extra comment for clarity --- qutebrowser/browser/adblock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/browser/adblock.py b/qutebrowser/browser/adblock.py index e265b74f0..54c8ce28f 100644 --- a/qutebrowser/browser/adblock.py +++ b/qutebrowser/browser/adblock.py @@ -66,7 +66,7 @@ def is_whitelisted_host(url): """Check if the given url is on the adblock whitelist. Args: - url: The url to check. + url: The url to check as a string. """ for pattern in config.val.content.host_blocking.whitelist: if urlmatch.URLPattern(pattern).matches(url):