From 375ee2dd1ce2c71a393448cad8c4adcdca56109a Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Thu, 19 Jan 2012 01:28:39 +0000 Subject: [PATCH] correction for the comparision in previous commit --- deluge/core/torrent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index 261ce6f77..6229a1ab7 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -317,7 +317,7 @@ class Torrent(object): break self.options["file_priorities"] = self.handle.file_priorities() - if self.options["file_priorities"] != file_priorities: + if self.options["file_priorities"] != list(file_priorities): log.warning("File priorities were not set for this torrent") # Set the first/last priorities if needed