mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
fix for a bug reported by l0rda@l0rda.biz (TypeError: cannot concatenate 'str' and 'NoneType' objects)
This commit is contained in:
parent
b667c50588
commit
bd4fbb3251
|
@ -294,7 +294,8 @@ class Filesystem:
|
||||||
else:
|
else:
|
||||||
chunk = ""
|
chunk = ""
|
||||||
|
|
||||||
newFileContent += chunk
|
if chunk:
|
||||||
|
newFileContent += chunk
|
||||||
|
|
||||||
fileContent = newFileContent
|
fileContent = newFileContent
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user