youtube-dl

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

commit 37e64addc8412d0b8c47ec35be4998cab99a7df4
parent d82ba23ba52e217c22df9ff20bf176dc6c72879a
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Wed, 23 Jul 2014 01:47:18 +0200

[nbc] Add missing import

Diffstat:
Myoutube_dl/extractor/nbc.py | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/nbc.py b/youtube_dl/extractor/nbc.py @@ -4,7 +4,11 @@ import re import json from .common import InfoExtractor -from ..utils import find_xpath_attr, compat_str +from ..utils import ( + compat_str, + ExtractorError, + find_xpath_attr, +) class NBCIE(InfoExtractor):