Skip to content

Commit

Permalink
[svt] fix article extraction(closes #22897)(closes #22919)
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine authored and bbepis committed Feb 27, 2020
1 parent b46130c commit 48c31b5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion youtube_dl/extractor/svt.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,19 @@
import re

from .common import InfoExtractor
from ..compat import compat_str
from ..compat import (
compat_parse_qs,
compat_str,
compat_urllib_parse_urlparse,
)
from ..utils import (
determine_ext,
dict_get,
int_or_none,
str_or_none,
strip_or_none,
try_get,
urljoin,
)


Expand Down

0 comments on commit 48c31b5

Please sign in to comment.