Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 436d87d

Browse files
committed
Fixes #1560
1 parent 6c08395 commit 436d87d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def main():
142142
errMsg = unhandledExceptionMessage()
143143
excMsg = traceback.format_exc()
144144

145-
if "No space left" in excMsg:
145+
if any(_ in excMsg for _ in ("No space left", "Disk quota exceeded")):
146146
errMsg = "no space left on output device"
147147
logger.error(errMsg)
148148
raise SystemExit

0 commit comments

Comments
 (0)