We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8804e8 commit 213a73bCopy full SHA for 213a73b
2 files changed
src/core/requests/headers.py
@@ -245,7 +245,7 @@ def https_open(self, req):
245
if str(err.code).startswith(('3', '4', '5')):
246
if settings.VERBOSITY_LEVEL >= 2:
247
if len(str(err).split(": ")[1]) == 0:
248
- error_msg = error_msg + "Non-standard HTTP status code"
+ error_msg = "Non-standard HTTP status code"
249
pass
250
else:
251
error_msg = str(err).replace(": "," (")
src/utils/settings.py
@@ -216,7 +216,7 @@ def sys_argv_errors():
216
DESCRIPTION = "The command injection exploiter"
217
AUTHOR = "Anastasios Stasinopoulos"
218
VERSION_NUM = "3.3"
219
-REVISION = "58"
+REVISION = "59"
220
STABLE_RELEASE = False
221
if STABLE_RELEASE:
222
VERSION = "v" + VERSION_NUM + "-stable"
0 commit comments