- Removed unneeded local variable

git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@521 a942ae1a-1317-0410-a47c-b1dcaea8d605
0.x
Cyril Jaquier 2007-01-21 22:17:56 +00:00
parent 04cd3f5bd5
commit 5370b6740d
1 changed files with 2 additions and 2 deletions

View File

@ -378,8 +378,8 @@ class Filter(JailThread):
# is created and is added to the FailManager.
def getFailures(self, filename):
ret = self.__openLogFile(filename)
if not ret:
# Try to open log file.
if not self.__openLogFile(filename):
logSys.error("Unable to get failures in " + filename)
return False
self.__setFilePos()