youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 59ce20191588028ee90551b40b33a8a36d778eec
parent 8d5d3a5d00ac8a5d39321f301308abfb473981a8
Author: Filippo Valsorda <filippo.valsorda@gmail.com>
Date:   Tue, 11 Dec 2012 11:02:21 +0100

print traceback on trouble if --verbose (why didn't I think of this before!?)

Diffstat:
Myoutube_dl/FileDownloader.py | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py @@ -10,6 +10,7 @@ import socket import subprocess import sys import time +import traceback if os.name == 'nt': import ctypes @@ -217,6 +218,8 @@ class FileDownloader(object): """ if message is not None: self.to_stderr(message) + if self.params.get('verbose'): + self.to_stderr(u''.join(traceback.format_list(traceback.extract_stack()))) if not self.params.get('ignoreerrors', False): raise DownloadError(message) self._download_retcode = 1