From 1742ec76363fba1435e859a2ba4611923334f7e4 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 20 Jan 2025 18:13:28 +0000 Subject: [PATCH] Add debug --- webapp_post.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webapp_post.py b/webapp_post.py index 6f571be58..be6a3f3b1 100644 --- a/webapp_post.py +++ b/webapp_post.py @@ -165,6 +165,7 @@ def _get_instance_software(base_dir: str, session, __version__, http_prefix, domain) if not get_json_valid(nodeinfo1_json): return '' + print('DEBUG get_instance_software: ' + str(nodeinfo1_json)) # get the nodeinfo data nodeinfo_url = None if nodeinfo1_json.get('links'): @@ -183,6 +184,7 @@ def _get_instance_software(base_dir: str, session, __version__, http_prefix, domain) if not get_json_valid(nodeinfo_json): return '' + print('DEBUG get_instance_software: ' + str(nodeinfo_json)) if not nodeinfo_json.get('software'): return '' if not isinstance(nodeinfo_json['software'], dict):