diff options
-rw-r--r-- | http/index.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http/index.py b/http/index.py index 2e46c8f..f4f7564 100644 --- a/http/index.py +++ b/http/index.py @@ -95,7 +95,7 @@ def handler(req): # internal link targets (team, WK breakdown, etc.) removed for internal_link in page_content.select('table > tr > td > table a'): - internal_link['href'] = None + internal_link.attrs = {} # internal link icons removed for link_icon in page_content.select('img[src*="ico_link_8.gif"]'): |