From 51c28cdd0853aa2eda2de6454227450bdfd5634b Mon Sep 17 00:00:00 2001 From: Shaun McCance Date: Fri, 18 Dec 2020 20:24:30 -0500 Subject: yelp-check.py: Add https CC URLs to hrefs allow list --- tools/yelp-check.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/yelp-check.py b/tools/yelp-check.py index 9754bd3..5a5afdf 100644 --- a/tools/yelp-check.py +++ b/tools/yelp-check.py @@ -192,8 +192,10 @@ class HrefsChecker (Checker): # safelisting URLs that we use as identifiers hrefs = { - 'http://creativecommons.org/licenses/by-sa/3.0/': True, - 'http://creativecommons.org/licenses/by-sa/3.0/us/': True + 'http://creativecommons.org/licenses/by-sa/3.0/': True, + 'https://creativecommons.org/licenses/by-sa/3.0/': True, + 'http://creativecommons.org/licenses/by-sa/3.0/us/': True, + 'https://creativecommons.org/licenses/by-sa/3.0/us/': True } retcode = 0 -- cgit v1.2.1