File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 18
18
from thirdparty .six import unichr as _unichr
19
19
20
20
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21
- VERSION = "1.4.12.15 "
21
+ VERSION = "1.4.12.16 "
22
22
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
23
23
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
24
24
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 33
33
import traceback
34
34
import warnings
35
35
36
+ warnings .filterwarnings (action = "ignore" , message = "Python 2 is no longer supported" )
36
37
warnings .filterwarnings (action = "ignore" , message = ".*was already imported" , category = UserWarning )
37
38
warnings .filterwarnings (action = "ignore" , message = ".*using a very old release" , category = UserWarning )
38
39
warnings .filterwarnings (action = "ignore" , message = ".*default buffer size will be used" , category = RuntimeWarning )
You can’t perform that action at this time.
0 commit comments