From 2130d8f6a497ca6219d4b3979cc5dcc6845827fc Mon Sep 17 00:00:00 2001 From: Ricardo Garcia Date: Tue, 22 Jul 2008 15:53:22 +0200 Subject: [PATCH] Make the downloader print the name of the destination file --- youtube-dl | 1 + 1 file changed, 1 insertion(+) diff --git a/youtube-dl b/youtube-dl index f3239781b..0e5616220 100755 --- a/youtube-dl +++ b/youtube-dl @@ -228,6 +228,7 @@ class FileDownloader(object): try: filename = self._params['outtmpl'] % result + self.to_stdout('[download] Destination: %s' % filename) except (ValueError, KeyError), err: retcode = self.trouble('ERROR: invalid output template: %s' % str(err)) continue