Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 65b0dbd

Browse files
committed
Patches #3884
1 parent 5f411f7 commit 65b0dbd

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.3.8.14"
21+
VERSION = "1.3.8.15"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

thirdparty/colorama/ansitowin32.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,8 @@ def _write(self, text, retry=5):
184184
if not (err.errno == 0 and retry > 0):
185185
raise
186186
self._write(text, retry-1)
187+
except UnicodeError:
188+
self.wrapped.write('?')
187189

188190
def convert_ansi(self, paramstring, command):
189191
if self.convert:

0 commit comments

Comments
 (0)