File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 20
20
from thirdparty .six import unichr as _unichr
21
21
22
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
- VERSION = "1.6.3.16 "
23
+ VERSION = "1.6.3.17 "
24
24
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
25
25
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
26
26
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change @@ -955,7 +955,7 @@ def _format_action_invocation(self, action):
955
955
argv [i ] = re .sub (u"\\ A(\u2010 |\u2013 |\u2212 |\u2014 |\u4e00 |\u1680 |\uFE63 |\uFF0D )+" , lambda match : '-' * len (match .group (0 )), argv [i ])
956
956
957
957
# Reference: https://unicode-table.com/en/sets/quotation-marks/
958
- argv [i ] = argv [i ].strip (u"\u00AB \u2039 \u00BB \u203A \u201E \u201C \u201F \u201D \u2019 \u0022 \ u275D\u275E \u276E \u276F \u2E42 \u301D \u301E \u301F \uFF02 \u201A \u2018 \u201B \u275B \u275C " )
958
+ argv [i ] = argv [i ].strip (u"\u00AB \u2039 \u00BB \u203A \u201E \u201C \u201F \u201D \u2019 \u275D \u275E \u276E \u276F \u2E42 \u301D \u301E \u301F \uFF02 \u201A \u2018 \u201B \u275B \u275C " )
959
959
960
960
if argv [i ] == "-hh" :
961
961
argv [i ] = "-h"
You can’t perform that action at this time.
0 commit comments