From b69898d624520af8446ebeba8e839cc6fa6a7e03 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 8 Mar 2014 09:37:39 +0100 Subject: [PATCH] Remove double self in filetime check. fixes #2952 --- couchpotato/core/plugins/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/base.py b/couchpotato/core/plugins/base.py index b852d62e..81ffcec2 100644 --- a/couchpotato/core/plugins/base.py +++ b/couchpotato/core/plugins/base.py @@ -318,7 +318,7 @@ class Plugin(object): break # File has changed in last 60 seconds - file_time = self.self.getFileTimes(cur_file) + file_time = self.getFileTimes(cur_file) for t in file_time: if t > now - unchanged_for: file_too_new = tryInt(time.time() - t)