mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Fixes #3262
This commit is contained in:
parent
71208e891c
commit
932aa8dd94
3 changed files with 4 additions and 4 deletions
|
|
@ -126,7 +126,7 @@ class BigArray(list):
|
|||
try:
|
||||
with open(self.chunks[index], "rb") as f:
|
||||
self.cache = Cache(index, pickle.loads(bz2.decompress(f.read())), False)
|
||||
except IOError, ex:
|
||||
except Exception, ex:
|
||||
errMsg = "exception occurred while retrieving data "
|
||||
errMsg += "from a temporary file ('%s')" % ex.message
|
||||
raise SqlmapSystemException(errMsg)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue