Skip to content

Commit

Permalink
increase verbosity in case connection is lost; see #20
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianVollmer committed May 30, 2018
1 parent d7ac0d6 commit 4ca9e5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seth/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 4ca9e5f

Please sign in to comment.