diff options
author | 2015-07-29 08:41:47 +0200 | |
---|---|---|
committer | 2015-07-29 08:41:47 +0200 | |
commit | 6f5062a7ac02c8d583c7f9d480be69e3ee83c05c (patch) | |
tree | 62c8c9570965b86bc40eff7fbc85c4e6fba94532 /module/plugins/hooks | |
parent | Fix _log method (diff) | |
download | pyload-6f5062a7ac02c8d583c7f9d480be69e3ee83c05c.tar.xz |
Fix https://github.com/pyload/pyload/issues/1520 (3)
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r-- | module/plugins/hooks/UpdateManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hooks/UpdateManager.py b/module/plugins/hooks/UpdateManager.py index 2f82bc498..117da0633 100644 --- a/module/plugins/hooks/UpdateManager.py +++ b/module/plugins/hooks/UpdateManager.py @@ -115,7 +115,7 @@ class UpdateManager(Addon): if not os.path.isfile(f): continue - mtime = os.stat(f).st_mtime + mtime = os.path.getmtime(f) if id not in self.mtimes: self.mtimes[id] = mtime |