From ff00553d2a12f63dca3a95776ac9ed6b4d014186 Mon Sep 17 00:00:00 2001 From: harshadyeola Date: Wed, 28 Jan 2015 16:44:57 +0530 Subject: [PATCH] minor fix --- ee/core/logwatch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/core/logwatch.py b/ee/core/logwatch.py index 8392a0cc..2c76be26 100644 --- a/ee/core/logwatch.py +++ b/ee/core/logwatch.py @@ -48,7 +48,7 @@ class LogWatcher(object): self.extensions = extensions # assert (os.path.isdir(self.folder), "%s does not exists" # % self.folder) - for files in self.filelist: + for file in self.filelist: assert (os.path.isfile(file), "%s does not exists" % file) assert callable(callback) self.update_files()