From: John Runyon Date: Sun, 14 Jan 2024 19:54:12 +0000 (-0700) Subject: urls - skip wunderground X-Git-Url: https://jfr.im/git/erebus.git/commitdiff_plain/d2439073c0e0cbc981c00e1a26fbd9bab2b2cff7 urls - skip wunderground --- diff --git a/modules/urls.py b/modules/urls.py index 4b27ff2..c1e2705 100644 --- a/modules/urls.py +++ b/modules/urls.py @@ -342,6 +342,7 @@ other_regexes = ( (lambda x: '', (re.compile(r"""https?://(?:www\.)?(?:twitter|x)\.com/""", re.I),)), # skip twitter (lambda x: '', (re.compile(r"""https?://(?:www\.)?reddit\.com/""", re.I),)), # skip new-reddit (lambda x: '', (re.compile(r"""https?://jfr\.im/git/""", re.I),)), # skip my gitweb + (lambda x: '', (re.compile(r"""https?://(?:www\.)?wunderground\.com/""", re.I),)), # skip wunderground, they time us out ) regexes = other_regexes + ( (goturl, url_regex),