mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 08:22:15 +01:00
Minor update
This commit is contained in:
parent
b0f5b4f9bc
commit
969259607c
1 changed files with 2 additions and 1 deletions
|
|
@ -5,6 +5,7 @@ Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
|
|||
See the file 'doc/COPYING' for copying permission
|
||||
"""
|
||||
|
||||
import bdb
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
|
|
@ -75,7 +76,7 @@ def main():
|
|||
errMsg = "user quit"
|
||||
logger.error(errMsg)
|
||||
|
||||
except sqlmapSilentQuitException:
|
||||
except (sqlmapSilentQuitException, bdb.BdbQuit):
|
||||
pass
|
||||
|
||||
except exceptionsTuple, e:
|
||||
|
|
|
|||
Loading…
Reference in a new issue