From b852051bb7a2e4fc9fcacc45bcbe8b7d95b7e962 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Sat, 25 Apr 2009 07:29:08 +0000 Subject: [PATCH] Add 'is_finished' torrent status key --- deluge/core/torrent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index 6c368417f..829e993d1 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -569,6 +569,7 @@ class Torrent: "files": self.files, "hash": self.torrent_id, "is_auto_managed": self.options["auto_managed"], + "is_finished": self.is_finished, "max_connections": self.options["max_connections"], "max_download_speed": self.options["max_download_speed"], "max_upload_slots": self.options["max_upload_slots"],