mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-24 10:33:47 +03:00
Minor nuisance patch
This commit is contained in:
parent
78e503d7b2
commit
4237333dca
|
@ -16,6 +16,8 @@ import time
|
|||
import traceback
|
||||
import warnings
|
||||
|
||||
sys.dont_write_bytecode = True
|
||||
|
||||
warnings.filterwarnings(action="ignore", message=".*was already imported", category=UserWarning)
|
||||
warnings.filterwarnings(action="ignore", category=DeprecationWarning)
|
||||
|
||||
|
|
|
@ -7,6 +7,9 @@ See the file 'doc/COPYING' for copying permission
|
|||
|
||||
import logging
|
||||
import optparse
|
||||
import sys
|
||||
|
||||
sys.dont_write_bytecode = True
|
||||
|
||||
from lib.utils import versioncheck # this has to be the first non-standard import
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user