Remove redundant reassignment of variable

pull/128/merge^2
Steven Hiscocks 2013-02-24 19:28:41 +00:00
parent 78d86bc38d
commit 184e0eccb6
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ class Filter(JailThread):
# Decode line to UTF-8 # Decode line to UTF-8
line = line.decode('utf-8') line = line.decode('utf-8')
except UnicodeDecodeError: except UnicodeDecodeError:
line = line pass
timeMatch = self.dateDetector.matchTime(line) timeMatch = self.dateDetector.matchTime(line)
if timeMatch: if timeMatch:
# Lets split into time part and log part of the line # Lets split into time part and log part of the line