From fe397caafcb3912b089074915ad214c255da8706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joel=20K=C3=A5berg?= Date: Fri, 20 Dec 2013 02:08:20 +0100 Subject: [PATCH] better score forumla for seeding/leeching --- couchpotato/core/plugins/score/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/plugins/score/main.py b/couchpotato/core/plugins/score/main.py index 1164ee19..17448eab 100644 --- a/couchpotato/core/plugins/score/main.py +++ b/couchpotato/core/plugins/score/main.py @@ -35,8 +35,8 @@ class Score(Plugin): # Torrents only if nzb.get('seeders'): try: - score += nzb.get('seeders') * 100 / 5 - score += nzb.get('leechers') * 100 / 10 + score += nzb.get('seeders') * 100 / 15 + score += nzb.get('leechers') * 100 / 30 except: pass