From 64d06f565097e0cb898dc6a8ce7152336fa96b8a Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Wed, 13 Aug 2014 22:45:53 +0100 Subject: [PATCH] Fix showing wrong state for finished torrent --- 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 881a40857..213dfd7d3 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -36,7 +36,7 @@ LT_TORRENT_STATE_MAP = { "checking_files": "Checking", "downloading_metadata": "Downloading", "downloading": "Downloading", - "finished": "Finished", + "finished": "Seeding", "seeding": "Seeding", "allocating": "Allocating", "checking_resume_data": "Checking"