mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Dealing with Python3.8 RuntimeWarning
This commit is contained in:
parent
a0dca74c12
commit
7bbeb9e841
3 changed files with 7 additions and 2 deletions
|
|
@ -35,6 +35,7 @@ try:
|
|||
|
||||
warnings.filterwarnings(action="ignore", message=".*was already imported", category=UserWarning)
|
||||
warnings.filterwarnings(action="ignore", message=".*using a very old release", category=UserWarning)
|
||||
warnings.filterwarnings(action="ignore", message=".*default buffer size will be used", category=RuntimeWarning)
|
||||
warnings.filterwarnings(action="ignore", category=DeprecationWarning)
|
||||
|
||||
from lib.core.data import logger
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue