From c0d99506369e572d787c8491f4f16a352bd6a3f4 Mon Sep 17 00:00:00 2001 From: Nic Wolfe <nic@wolfeden.ca> Date: Sat, 14 Apr 2012 13:08:48 -0600 Subject: [PATCH] Revert SD quality changes that break SDTV vs SD DVD differentiation. --- sickbeard/search.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/sickbeard/search.py b/sickbeard/search.py index 9d2fe246c..52b1e1235 100644 --- a/sickbeard/search.py +++ b/sickbeard/search.py @@ -210,9 +210,6 @@ def pickBestResult(results, quality_list=None): bestResult = cur_result elif "internal" in bestResult.name.lower() and "internal" not in cur_result.name.lower(): bestResult = cur_result - elif "xvid" in bestResult.name.lower() and "x264" in cur_result.name.lower(): - logger.log(u"Preferring " + cur_result.name + " (x264 over xvid)") - bestResult = cur_result if bestResult: logger.log(u"Picked "+bestResult.name+" as the best", logger.DEBUG) -- GitLab