Fix iwla crash due to bad line type

This commit is contained in:
Gregory Soutade 2021-06-03 08:49:43 +02:00
parent 0bae79ff74
commit 2545ca5e52
1 changed files with 1 additions and 1 deletions

View File

@ -788,7 +788,7 @@ class IWLA(object):
for l in _file: for l in _file:
# print "line " + l # print "line " + l
groups = self.log_re.match(l) groups = self.log_re.match(str(l))
if groups: if groups:
self._newHit(groups.groupdict("")) self._newHit(groups.groupdict(""))