From cdddc38780913b0386fb8d0523cfed0d129cb9fc Mon Sep 17 00:00:00 2001 From: John Garland Date: Mon, 6 Jul 2009 04:54:45 +0000 Subject: [PATCH] Put string conversion from last commit in correct place. --- deluge/plugins/blocklist/blocklist/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deluge/plugins/blocklist/blocklist/core.py b/deluge/plugins/blocklist/blocklist/core.py index 9cc29ed35..a1226954e 100644 --- a/deluge/plugins/blocklist/blocklist/core.py +++ b/deluge/plugins/blocklist/blocklist/core.py @@ -163,7 +163,7 @@ class Core(CorePluginBase): def update_info(self, blocklist): """Updates blocklist info""" - self.config["last_update"] = str(datetime.datetime.utcnow().strftime("%a, %d %b %Y %H:%M:%S GMT")) + self.config["last_update"] = datetime.datetime.utcnow().strftime("%a, %d %b %Y %H:%M:%S GMT") self.config["list_size"] = os.path.getsize(blocklist) def download_list(self, url=None): @@ -186,7 +186,7 @@ class Core(CorePluginBase): headers = {} if self.config["last_update"] and not self.force_download: - headers['If-Modified-Since'] = self.config["last_update"] + headers['If-Modified-Since'] = str(self.config["last_update"]) log.debug("Attempting to download blocklist %s" % url) log.debug("Sending headers: %s" % headers)