From 796a71e74df88f2e848cdc45266f78b11bdc86e4 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 9 Jan 2023 23:20:44 +0000 Subject: [PATCH] Remove debug --- webfinger.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/webfinger.py b/webfinger.py index af2cb737b..b9686d387 100644 --- a/webfinger.py +++ b/webfinger.py @@ -259,11 +259,8 @@ def wellknown_protocol_handler(path: str, base_dir: str, if not path.startswith('/.well-known/protocol-handler?'): return None - print('Test1: ' + path) - if 'target=' in path: path = urllib.parse.unquote(path) - print('Test1: ' + path) target = path.split('target=')[1] if ';' in target: target = target.split(';')[0]