Skip to content

Commit 80c6e24

Browse files
committed
1 parent 8ae94ba commit 80c6e24

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/utils/logs.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,8 @@ def logs_notification(filename):
173173
"""
174174
def log_traffic(header):
175175
output_file = open(menu.options.traffic_file, "a")
176+
if type(header) is bytes:
177+
header = header.decode(settings.UNICODE_ENCODING)
176178
output_file.write(header)
177179
output_file.close()
178180

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

0 commit comments

Comments
 (0)