Skip to content

Commit 8b63ee9

Browse files
committed
Minor update for sqlmapproject#1281
1 parent 97244f5 commit 8b63ee9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/core/option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ def _parseBurpLog(content):
289289
line = line.strip('\r')
290290
match = re.search(r"\A(%s) (.+) HTTP/[\d.]+\Z" % "|".join(getPublicTypeMembers(HTTPMETHOD, True)), line) if not method else None
291291

292-
if len(line) == 0 and method and method != HTTPMETHOD.GET and data is None:
292+
if len(line.strip()) == 0 and method and method != HTTPMETHOD.GET and data is None:
293293
data = ""
294294
params = True
295295

0 commit comments

Comments
 (0)