X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/b5e5c4470d993b41113ae43b7f5030d412585430..d2439073c0e0cbc981c00e1a26fbd9bab2b2cff7:/modules/urls.py 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),