This commit is contained in:
Miroslav Stampar
2015-11-29 19:40:14 +01:00
parent 795777b7c5
commit a219ff9a92
2 changed files with 5 additions and 5 deletions

View File

@@ -77,10 +77,6 @@ class Wordlist(object):
except StopIteration:
self.adjust()
retVal = self.iter.next().rstrip()
try:
retVal = retVal.decode(UNICODE_ENCODING)
except UnicodeDecodeError:
continue
if not self.proc_count or self.counter % self.proc_count == self.proc_id:
break
return retVal