Extend #980 with --max-quality support

This commit is contained in:
Philipp Hagemeister 2013-10-18 00:46:35 +02:00
parent 5d254f776a
commit f4d96df0f1
4 changed files with 55 additions and 5 deletions

View file

@ -34,10 +34,10 @@ def try_rm(filename):
class FakeYDL(YoutubeDL):
def __init__(self):
def __init__(self, override=None):
# Different instances of the downloader can't share the same dictionary
# some test set the "sublang" parameter, which would break the md5 checks.
params = get_params()
params = get_params(override=override)
super(FakeYDL, self).__init__(params)
self.result = []