From ed09f7cef010748d3ecf256c697c5750ff149399 Mon Sep 17 00:00:00 2001 From: jgilf Date: Thu, 28 May 2020 21:47:39 +1000 Subject: [PATCH] [Pivotshare] Remove unused exception variable --- youtube_dl/extractor/pivotshare.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/pivotshare.py b/youtube_dl/extractor/pivotshare.py index d04cbe588..916e4c672 100644 --- a/youtube_dl/extractor/pivotshare.py +++ b/youtube_dl/extractor/pivotshare.py @@ -171,7 +171,7 @@ class PivotshareIE(InfoExtractor): '%schannels/%s/media/%s/stream' % (self._API_BASE, channel_id, video_id), video_id, "Downloading stream JSON metadata", query=query) - except ExtractorError as e: + except ExtractorError: self.raise_login_required( 'This video is only available for %s subscribers' % channel)