fix timestamp comparison

pull/244/head
Jeff Becker 5 years ago
parent 6383ee994a
commit 7653db89f4
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -79,7 +79,7 @@ class BinHolder:
return False
if os.path.exists(self._fpath):
st = os.stat(self._fpath)
return st.st_mtime >= t.timestamp()
return st.st_mtime < t.timestamp()
return True

Loading…
Cancel
Save