mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Minor bug fix
This commit is contained in:
parent
ec4e49d771
commit
4b79269608
|
@ -423,7 +423,7 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
||||||
abortedFlag = True
|
abortedFlag = True
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
value = (partialValue[_] if _ < len(partialValue) else threadData.shared.value[_] for _ in xrange(length))
|
value = [partialValue[_] if _ < len(partialValue) else threadData.shared.value[_] for _ in xrange(length)]
|
||||||
|
|
||||||
infoMsg = None
|
infoMsg = None
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user