fix timestamp comparison

This commit is contained in:
Jeff Becker 2019-01-23 16:47:04 -05:00
parent 6383ee994a
commit 7653db89f4
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

View File

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