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 48b7245 commit 0126b8eCopy full SHA for 0126b8e
1 file changed
lib/utils/hash.py
@@ -582,8 +582,7 @@ def dictionaryAttack(attack_dict):
582
warnMsg = "user aborted during dictionary attack phase"
583
logger.warn(warnMsg)
584
585
- if retVal:
586
- results.append([retVal.get() for i in xrange(retVal.qsize())])
+ results.extend([retVal.get() for i in xrange(retVal.qsize())] if retVal else [])
587
588
clearConsoleLine()
589
@@ -650,8 +649,7 @@ class Value():
650
649
651
652
653
654
655
656
657
0 commit comments