From adc32b2b274bc9b434c98a803a63ad82899341bf Mon Sep 17 00:00:00 2001 From: PC-Admin Date: Fri, 18 Aug 2023 21:31:53 +0800 Subject: [PATCH] add debug line --- report_commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/report_commands.py b/report_commands.py index 646960f..0b90193 100644 --- a/report_commands.py +++ b/report_commands.py @@ -258,6 +258,7 @@ def lookup_homeserver_admin(preset_baseurl): # If the request was successful, the status code will be 200 if response.status_code == 200 and ( "email_address" in response.text or "matrix_id" in response.text ): # Parse the response as JSON + print(response.text) data = json.loads(response.text) #print("\nAdmin contact details for " + baseurl + " are: " + str(data))