mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 17:02:39 +01:00
Dealing with broken pipe (not filling terminal with traceback in that case)
This commit is contained in:
parent
6945a0a570
commit
f272517cd2
1 changed files with 2 additions and 0 deletions
2
thirdparty/ansistrm/ansistrm.py
vendored
2
thirdparty/ansistrm/ansistrm.py
vendored
|
|
@ -62,6 +62,8 @@ class ColorizingStreamHandler(logging.StreamHandler):
|
||||||
self.flush()
|
self.flush()
|
||||||
except (KeyboardInterrupt, SystemExit):
|
except (KeyboardInterrupt, SystemExit):
|
||||||
raise
|
raise
|
||||||
|
except IOError:
|
||||||
|
pass
|
||||||
except:
|
except:
|
||||||
self.handleError(record)
|
self.handleError(record)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue