diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-01-21 10:36:15 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-01-21 10:36:15 +0100 |
commit | 47e0e1e0e2306dd7119844bbbc3ef39ccb175ed1 (patch) | |
tree | 8ea1860ee3c31d4927764fc94bd69d4c22ce93ec /youtube_dl/extractor | |
parent | efcddaebe9302eaaea1cbb5570c5c2bd25abf1fe (diff) |
[nbc] Fix pep8 issue
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/nbc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/nbc.py b/youtube_dl/extractor/nbc.py index 7ae66616a..f840f6532 100644 --- a/youtube_dl/extractor/nbc.py +++ b/youtube_dl/extractor/nbc.py @@ -134,7 +134,7 @@ class NBCNewsIE(InfoExtractor): continue raise - if not all_videos or not 'videos' in all_videos: + if not all_videos or 'videos' not in all_videos: continue try: |