1260 pathlib.Path(self.pluginRepositoryFile).stat().st_mtime |
1260 pathlib.Path(self.pluginRepositoryFile).stat().st_mtime |
1261 ) |
1261 ) |
1262 now = datetime.datetime.now() |
1262 now = datetime.datetime.now() |
1263 delta = now - lastModified |
1263 delta = now - lastModified |
1264 if ( |
1264 if ( |
1265 (period == 1 and lastModified.date().day == now.date().day) |
1265 (period == 1 and delta.days < 1) |
1266 or (period == 2 and delta.days < 7) |
1266 or (period == 2 and delta.days < 7) |
1267 or (period == 3 and delta.days < 30) |
1267 or (period == 3 and delta.days < 30) |
1268 ): |
1268 ): |
1269 # daily, weekly, monthly |
1269 # daily, weekly, monthly |
1270 return |
1270 return |