at some point, auth loads about:blank and (since there's no response) an exception occurs:
Traceback (most recent call last):
File "gp_saml_gui.py", line 127, in on_load_changed
ct = h.get_content_type()
^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'get_content_type'
the current code doesn't make much sense -- if an HTTP response is not present, it sets 'h' to None... but then proceeds to do stuff with 'h' assuming it has some value.
at some point, auth loads
about:blank
and (since there's no response) an exception occurs:the current code doesn't make much sense -- if an HTTP response is not present, it sets 'h' to None... but then proceeds to do stuff with 'h' assuming it has some value.