From 068ea7242f4b254c44760b761ce8741323f27508 Mon Sep 17 00:00:00 2001 From: Lynne Date: Thu, 4 Jul 2019 18:08:00 +1000 Subject: [PATCH] fixed typo --- functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.py b/functions.py index e971bd9..96f0a32 100755 --- a/functions.py +++ b/functions.py @@ -77,7 +77,7 @@ def extract_toot(toot): for ht in soup.select("a.hashtag"): #make hashtags no longer links, just text ht.unwrap() - for link in soup.select("a"): #ocnvert example.com to just https://example.com link.insert_after(link["href"]) link.decompose()