Adjust file priorities to make Highest actually the highest allowed by libtorrent and High has been changed to what Highest was

This commit is contained in:
Andrew Resch 2011-06-21 10:50:57 -07:00
parent d3b0df5788
commit 01465f583f
1 changed files with 4 additions and 4 deletions

View File

@ -118,12 +118,12 @@ TORRENT_STATE = [
FILE_PRIORITY = { FILE_PRIORITY = {
0: "Do Not Download", 0: "Do Not Download",
1: "Normal Priority", 1: "Normal Priority",
2: "High Priority", 5: "High Priority",
5: "Highest Priority", 7: "Highest Priority",
"Do Not Download": 0, "Do Not Download": 0,
"Normal Priority": 1, "Normal Priority": 1,
"High Priority": 2, "High Priority": 5,
"Highest Priority": 5 "Highest Priority": 7
} }
def get_version(): def get_version():