From 3287b4a114ec2e2c460d22846828dad955459a9a Mon Sep 17 00:00:00 2001 From: Aniruddh Joshi Date: Fri, 15 Oct 2021 23:37:22 +0530 Subject: [PATCH] Fixed compat_str import --- youtube_dl/extractor/sonyliv.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/youtube_dl/extractor/sonyliv.py b/youtube_dl/extractor/sonyliv.py index 0e890f909..8307c5f20 100644 --- a/youtube_dl/extractor/sonyliv.py +++ b/youtube_dl/extractor/sonyliv.py @@ -5,12 +5,14 @@ import time import uuid from .common import InfoExtractor -from ..compat import compat_HTTPError +from ..compat import ( + compat_HTTPError, + compat_str +) from ..utils import ( ExtractorError, int_or_none, - try_get, - compat_str + try_get )