mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
Fix import on startup which got broken in previous commit.
This commit is contained in:
parent
389e9cdbb0
commit
3c5d5aa16e
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@
|
|||
|
||||
import os
|
||||
import time
|
||||
from datetime import datetime
|
||||
from datetime import datetime, timedelta
|
||||
from wsgiref.handlers import format_date_time
|
||||
import shutil
|
||||
|
||||
|
@ -92,7 +92,7 @@ class Core(CorePluginBase):
|
|||
if self.config["last_update"]:
|
||||
now = datetime.now()
|
||||
last_update = datetime.fromtimestamp(self.config["last_update"])
|
||||
check_period = datetime.timedelta(days=self.config["check_after_days"])
|
||||
check_period = timedelta(days=self.config["check_after_days"])
|
||||
if not self.config["last_update"] or last_update + check_period >= now:
|
||||
update_now = True
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue