Remove double self in filetime check. fixes #2952

This commit is contained in:
Ruud
2014-03-08 09:37:39 +01:00
parent 2066625bf0
commit b69898d624
+1 -1
View File
@@ -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)