diff --git a/scripts/xkcd/xkcd.py b/scripts/xkcd/xkcd.py index b339f5c..06f5da0 100755 --- a/scripts/xkcd/xkcd.py +++ b/scripts/xkcd/xkcd.py @@ -18,6 +18,12 @@ START_NUMBER = int(os.environ['START_NUMBER']) END_NUMBER = int(os.environ['END_NUMBER']) for n in range(START_NUMBER, END_NUMBER + 1): + + # Skip https://xkcd.com/1608/ "Hoverboard" + # This is not an image/comics but a small video game + if n == 1608: + continue + req = requests.get(url = f"https://xkcd.com/{n}/info.0.json") if req.status_code != 200: