[mod] remove unused import

This commit is contained in:
Laurent Peuch 2020-05-03 20:15:33 +02:00
parent 67fe8545dc
commit f760d6aa0f

View file

@ -143,7 +143,7 @@ def app_is_exposed_on_http(domain, path, message_in_page):
verify=False,
)
return r.status_code == 200 and message_in_page in r.text
except Exception as e:
except Exception:
return False