From 9d29ca7b2971c220e90c5821ca74904dcb75575a Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Sun, 8 May 2011 02:39:35 +0100 Subject: [PATCH] Check against libtorrent >15 not >16. --- 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 c94c833cb..d114bf379 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -569,7 +569,7 @@ class Torrent(object): Returns the time a torrent was last seen complete, ie, with all pieces available. """ - if lt.version_minor > 16: + if lt.version_minor > 15: return self.status.last_seen_complete self.calculate_last_seen_complete() return self._last_seen_complete