Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9edd468 commit b37dca1Copy full SHA for b37dca1
1 file changed
lib/techniques/blind/inference.py
@@ -354,12 +354,13 @@ def downloadThread():
354
dataToStdout("\r[%s] [INFO] retrieved: %s" % (time.strftime("%X"), replaceNewlineTabs(output, stdout=True)))
355
iolock.release()
356
357
- #TODO: more
358
if not conf.threadContinue:
359
if int(threading.currentThread().getName()) == numThreads - 1:
360
partialValue = unicode()
361
for v in value:
362
- if isinstance(v, basestring) and v is not None:
+ if v is None:
+ break
363
+ elif isinstance(v, basestring):
364
partialValue += v
365
366
if len(partialValue) > 0:
0 commit comments