Skip to content

Commit d0f966d

Browse files
committed
1 parent 5a7e37d commit d0f966d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/utils/common.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,9 @@ def unhandled_exception():
187187
print(settings.print_critical_msg(err_msg))
188188
raise SystemExit()
189189

190+
elif any(_ in exc_msg for _ in ("Broken pipe",)):
191+
raise SystemExit()
192+
190193
elif any(_ in exc_msg for _ in ("The paging file is too small",)):
191194
err_msg = "No space left for paging file."
192195
print(settings.print_critical_msg(err_msg))

src/utils/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def sys_argv_errors():
216216
DESCRIPTION = "The command injection exploiter"
217217
AUTHOR = "Anastasios Stasinopoulos"
218218
VERSION_NUM = "3.3"
219-
REVISION = "53"
219+
REVISION = "54"
220220
STABLE_RELEASE = False
221221
if STABLE_RELEASE:
222222
VERSION = "v" + VERSION_NUM + "-stable"

0 commit comments

Comments
 (0)