logging - squidExtLogFormat : typo (#5580)

This commit is contained in:
kulikov-a 2022-02-16 21:51:53 +03:00 committed by GitHub
parent 481c6f943f
commit 542dbbba84

View File

@ -75,7 +75,7 @@ class SquidExtLogFormat(NewBaseLogFormat):
def line(self):
tmp = re.match(squid_ext_timeformat, self._line)
grp = tmp.group(1)
return line.replace(grp, '')
return self._line.replace(grp, '')
class SquidJsonLogFormat(NewBaseLogFormat):