mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-05-14 09:29:26 +00:00
Getting rid of those ugly warning messages
This commit is contained in:
parent
ba4ed30eed
commit
bc4e1dab19
1 changed files with 6 additions and 0 deletions
|
|
@ -18,6 +18,12 @@ try:
|
|||
except ImportError:
|
||||
pass
|
||||
|
||||
try:
|
||||
import MySQLdb # used by SQLAlchemy in case of MySQL
|
||||
warnings.filterwarnings("error", category=MySQLdb.Warning)
|
||||
except ImportError:
|
||||
pass
|
||||
|
||||
from lib.core.data import conf
|
||||
from lib.core.data import logger
|
||||
from lib.core.exception import SqlmapConnectionException
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue