mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Python3 is a game-changer and I won't loose my mind
This commit is contained in:
parent
41c3139c01
commit
e56c422a8c
5 changed files with 52 additions and 43 deletions
8
thirdparty/clientform/clientform.py
vendored
8
thirdparty/clientform/clientform.py
vendored
|
|
@ -94,13 +94,13 @@ else:
|
|||
_logger.addHandler(handler)
|
||||
|
||||
try:
|
||||
from six.moves import cStringIO as _cStringIO
|
||||
from six.moves import urllib as _html_entities
|
||||
from six.moves import urllib as _urllib
|
||||
except ImportError:
|
||||
from thirdparty.six.moves import cStringIO as _cStringIO
|
||||
from thirdparty.six.moves import http_client as _html_entities
|
||||
from thirdparty.six.moves import urllib as _urllib
|
||||
except ImportError:
|
||||
from six.moves import cStringIO as _cStringIO
|
||||
from six.moves import urllib as _html_entities
|
||||
from six.moves import urllib as _urllib
|
||||
|
||||
try:
|
||||
import sgmllib
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue