Skip to content

Commit 213a73b

Browse files
committed
1 parent a8804e8 commit 213a73b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/core/requests/headers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def https_open(self, req):
245245
if str(err.code).startswith(('3', '4', '5')):
246246
if settings.VERBOSITY_LEVEL >= 2:
247247
if len(str(err).split(": ")[1]) == 0:
248-
error_msg = error_msg + "Non-standard HTTP status code"
248+
error_msg = "Non-standard HTTP status code"
249249
pass
250250
else:
251251
error_msg = str(err).replace(": "," (")

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 = "58"
219+
REVISION = "59"
220220
STABLE_RELEASE = False
221221
if STABLE_RELEASE:
222222
VERSION = "v" + VERSION_NUM + "-stable"

0 commit comments

Comments
 (0)