mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-04 16:41:19 +00:00
Fix FakeDownloaders
This commit is contained in:
parent
dbc50fdf82
commit
8749b71273
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ class FakeDownloader(FileDownloader):
|
||||||
self.params = parameters
|
self.params = parameters
|
||||||
def to_screen(self, s):
|
def to_screen(self, s):
|
||||||
print(s)
|
print(s)
|
||||||
def trouble(self, s):
|
def trouble(self, s, tb=None):
|
||||||
raise Exception(s)
|
raise Exception(s)
|
||||||
def extract_info(self, url):
|
def extract_info(self, url):
|
||||||
self.result.append(url)
|
self.result.append(url)
|
||||||
|
|
|
@ -30,7 +30,7 @@ class FakeDownloader(object):
|
||||||
self.params = parameters
|
self.params = parameters
|
||||||
def to_screen(self, s):
|
def to_screen(self, s):
|
||||||
print(s)
|
print(s)
|
||||||
def trouble(self, s):
|
def trouble(self, s, tb=None):
|
||||||
raise Exception(s)
|
raise Exception(s)
|
||||||
def download(self, x):
|
def download(self, x):
|
||||||
self.result.append(x)
|
self.result.append(x)
|
||||||
|
|
Loading…
Reference in a new issue