From 9b2e251a00924ad3c7eed29de06831e4fd790d0c Mon Sep 17 00:00:00 2001 From: rag-hav Date: Sun, 3 May 2020 13:27:33 +0530 Subject: [PATCH] Flake8 correction --- youtube_dl/extractor/xvideos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/xvideos.py b/youtube_dl/extractor/xvideos.py index b2f2da13c..74332c21b 100644 --- a/youtube_dl/extractor/xvideos.py +++ b/youtube_dl/extractor/xvideos.py @@ -90,7 +90,7 @@ class XVideosIE(InfoExtractor): webpage = self._download_webpage( 'https://www.xvideos.com/video%s/' % video_id, video_id, fatal=False) - if webpage == False: + if not webpage: webpage = self._download_webpage( 'https://www.xvideos3.com/video%s/' % video_id, video_id)