You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"ERR: ENV var TRACKERS_SEED_RATIO is not set properly - you need to make it in the following format:\nTRACKERNAME1@RATIO;TRACKERNAME2@RATIO\nWhere the TRACKERNAME is the name of the tracker (ex. torrentleech) and the RATIO is a decimal number (ex. 1.3)\nNow exiting app!")
57
+
"ERR: ENV var TRACKERS_SEED_RATIO is not set properly - you need to make it in the following format:\nTRACKER_NAME1#TRACKER_ALIAS1@RATIO1;TRACKERNAME2@RATIO2\nWhere the TRACKERNAME is the domain of the tracker from the tracker url string (ex. torrentleech.org) and the RATIO is a decimal number (ex. 1.3). The TRACKER_ALIAS is optional and it's the display name in the torrent's tags.\nNow exiting app!")
60
58
sys.exit(0)
61
59
62
60
ratio=0.0
63
61
try:
64
-
ratio=float(trackerUrlAndRatio[1])
62
+
ratio=float(trackerAndRatio[1])
65
63
exceptValueError:
66
64
print(
67
65
"ERR: ENV var TRACKERS_SEED_RATIO is not set properly - you need to set the ratio to be a decimal number like 2.3 for example. Now exiting app!")
0 commit comments