Browse Source

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

rtmp_test
Filippo Valsorda 12 years ago
parent
commit
59ce201915
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      youtube_dl/FileDownloader.py

+ 3
- 0
youtube_dl/FileDownloader.py View File

@ -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


Loading…
Cancel
Save