From 01465f583f91d350c7abfa055806168bff258cc9 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Tue, 21 Jun 2011 10:50:57 -0700 Subject: [PATCH] Adjust file priorities to make Highest actually the highest allowed by libtorrent and High has been changed to what Highest was --- deluge/common.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deluge/common.py b/deluge/common.py index 33288731f..561fba02a 100644 --- a/deluge/common.py +++ b/deluge/common.py @@ -118,12 +118,12 @@ TORRENT_STATE = [ FILE_PRIORITY = { 0: "Do Not Download", 1: "Normal Priority", - 2: "High Priority", - 5: "Highest Priority", + 5: "High Priority", + 7: "Highest Priority", "Do Not Download": 0, "Normal Priority": 1, - "High Priority": 2, - "Highest Priority": 5 + "High Priority": 5, + "Highest Priority": 7 } def get_version():