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

Skip to content

Commit 4b79269

Browse files
committed
Minor bug fix
1 parent ec4e49d commit 4b79269

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/techniques/blind/inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ def blindThread():
423423
abortedFlag = True
424424

425425
finally:
426-
value = (partialValue[_] if _ < len(partialValue) else threadData.shared.value[_] for _ in xrange(length))
426+
value = [partialValue[_] if _ < len(partialValue) else threadData.shared.value[_] for _ in xrange(length)]
427427

428428
infoMsg = None
429429

0 commit comments

Comments
 (0)