Changeset 3741
- Timestamp:
- 08/23/08 13:00:35 (5 months ago)
- Files:
-
- 3 modified
-
branches/1.0.0_RC/ChangeLog (modified) (1 diff)
-
branches/1.0.0_RC/deluge/plugins/blocklist/blocklist/core.py (modified) (1 diff)
-
trunk/deluge/plugins/blocklist/blocklist/core.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0.0_RC/ChangeLog
r3738 r3741 2 2 Core: 3 3 * Attempt to automatically upgrade a 0.5.x state file to new format 4 5 Plugins: 6 * Fix bug in Blocklist that prevented downloading of new file every X days 4 7 5 8 GtkUI: -
branches/1.0.0_RC/deluge/plugins/blocklist/blocklist/core.py
r3654 r3741 246 246 return True 247 247 248 if current_time >= (list_time + datetime.timedelta( self.config["check_after_days"] * 24 * 60 * 60)):248 if current_time >= (list_time + datetime.timedelta(days=self.config["check_after_days"])): 249 249 return True 250 250 -
trunk/deluge/plugins/blocklist/blocklist/core.py
r3654 r3741 246 246 return True 247 247 248 if current_time >= (list_time + datetime.timedelta( self.config["check_after_days"] * 24 * 60 * 60)):248 if current_time >= (list_time + datetime.timedelta(days=self.config["check_after_days"])): 249 249 return True 250 250
