mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
cosmetics
This commit is contained in:
parent
743e6d2655
commit
8883918ef9
1 changed files with 2 additions and 2 deletions
|
|
@ -45,8 +45,8 @@ class Connector(GenericConnector):
|
||||||
cursor.close()
|
cursor.close()
|
||||||
|
|
||||||
except (self.__sqlite.DatabaseError, self.__sqlite.OperationalError), msg:
|
except (self.__sqlite.DatabaseError, self.__sqlite.OperationalError), msg:
|
||||||
errMsg = "unable to connect using SQLite 3 library, trying with SQLite 2"
|
warnMsg = "unable to connect using SQLite 3 library, trying with SQLite 2"
|
||||||
logger.error(errMsg)
|
logger.warning(warnMsg)
|
||||||
try:
|
try:
|
||||||
try:
|
try:
|
||||||
import sqlite
|
import sqlite
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue