From 4ca9e5fd0930990defb1b2fab15a77d6836788a0 Mon Sep 17 00:00:00 2001 From: Adrian Vollmer Date: Wed, 30 May 2018 11:41:29 +0200 Subject: [PATCH] increase verbosity in case connection is lost; see #20 --- seth/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seth/main.py b/seth/main.py index ba1b37c..7880612 100644 --- a/seth/main.py +++ b/seth/main.py @@ -48,7 +48,7 @@ def run(self): except (ssl.SSLError, ssl.SSLEOFError) as e: print("SSLError: %s" % str(e)) except (ConnectionResetError, OSError) as e: - print("Connection lost") + print("Connection lost (%s)" % str(e)) if "creds" in self.vars: stop_attack()