File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020from lib .core .revision import getRevisionNumber
2121
2222# sqlmap version and site
23- VERSION = "1.0.0.19 "
23+ VERSION = "1.0.0.20 "
2424REVISION = getRevisionNumber ()
2525STABLE = VERSION .count ('.' ) <= 2
2626VERSION_STRING = "sqlmap/%s#%s" % (VERSION , "stable" if STABLE else "dev" )
Original file line number Diff line number Diff line change 55See the file 'doc/COPYING' for copying permission
66"""
77
8+ import sys
9+
10+ sys .dont_write_bytecode = True
11+
12+ from lib .utils import versioncheck # this has to be the first non-standard import
13+
814import bdb
915import inspect
1016import logging
1723import traceback
1824import warnings
1925
20- sys .dont_write_bytecode = True
21-
2226warnings .filterwarnings (action = "ignore" , message = ".*was already imported" , category = UserWarning )
2327warnings .filterwarnings (action = "ignore" , category = DeprecationWarning )
2428
25- from lib .utils import versioncheck # this has to be the first non-standard import
26-
2729from lib .controller .controller import start
2830from lib .core .common import banner
2931from lib .core .common import createGithubIssue
You can’t perform that action at this time.
0 commit comments