Use (documented) formatdate over format_date_time
This commit is contained in:
parent
beb35c5c35
commit
7625812c8c
|
@ -38,7 +38,7 @@ import os
|
||||||
import time
|
import time
|
||||||
import logging
|
import logging
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
from wsgiref.handlers import format_date_time
|
from email.utils import formatdate
|
||||||
from urlparse import urljoin
|
from urlparse import urljoin
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
|
@ -323,7 +323,7 @@ class Core(CorePluginBase):
|
||||||
|
|
||||||
headers = {}
|
headers = {}
|
||||||
if self.config["last_update"] and not self.force_download:
|
if self.config["last_update"] and not self.force_download:
|
||||||
headers['If-Modified-Since'] = format_date_time(self.config["last_update"])
|
headers['If-Modified-Since'] = formatdate(self.config["last_update"], usegmt=True)
|
||||||
|
|
||||||
log.debug("Attempting to download blocklist %s", url)
|
log.debug("Attempting to download blocklist %s", url)
|
||||||
log.debug("Sending headers: %s", headers)
|
log.debug("Sending headers: %s", headers)
|
||||||
|
|
|
@ -10,7 +10,7 @@ shutil.copy(python_path + "Scripts\deluge-console-script.py", python_path + "Scr
|
||||||
|
|
||||||
|
|
||||||
from bbfreeze import Freezer
|
from bbfreeze import Freezer
|
||||||
f = Freezer("..\\build-win32\\deluge-bbfreeze-" + build_version, includes=("libtorrent", "gzip", "zipfile", "re", "socket", "struct", "cairo", "pangocairo", "atk", "pango", "wsgiref.handlers", "twisted.internet.utils", "gio", "gtk.glade"))
|
f = Freezer("..\\build-win32\\deluge-bbfreeze-" + build_version, includes=("libtorrent", "gzip", "zipfile", "re", "socket", "struct", "cairo", "pangocairo", "atk", "pango", "twisted.internet.utils", "gio", "gtk.glade"))
|
||||||
f.addScript(python_path + "Scripts\deluge.py", gui_only=False)
|
f.addScript(python_path + "Scripts\deluge.py", gui_only=False)
|
||||||
f.addScript(python_path + "Scripts\deluged.py", gui_only=False)
|
f.addScript(python_path + "Scripts\deluged.py", gui_only=False)
|
||||||
f.addScript(python_path + "Scripts\deluge-web.py", gui_only=False)
|
f.addScript(python_path + "Scripts\deluge-web.py", gui_only=False)
|
||||||
|
|
Loading…
Reference in New Issue