diff --git a/cc/xkcd b/cc/xkcd index 1f42e22..9eaae3c 100644 --- a/cc/xkcd +++ b/cc/xkcd @@ -13,7 +13,8 @@ else: print("Comic not found.") elif req.ok: title = req.json()["title"] - print(f"xkcd {e}: {title} (https://xkcd.com/{e})") + alt = req.json()["alt"] + print(f"xkcd {e}: {title} ⁜ {alt} ⁜ https://xkcd.com/{e}") else: print("Couldn't fetch: status code {req.status_code}") else: