mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[faz] Future-proof XML element check
This commit is contained in:
parent
1d14c75f55
commit
9c86d50916
@ -52,7 +52,7 @@ def _real_extract(self, url):
|
|||||||
formats = []
|
formats = []
|
||||||
for pref, code in enumerate(['LOW', 'HIGH', 'HQ']):
|
for pref, code in enumerate(['LOW', 'HIGH', 'HQ']):
|
||||||
encoding = xpath_element(encodings, code)
|
encoding = xpath_element(encodings, code)
|
||||||
if encoding:
|
if encoding is not None:
|
||||||
encoding_url = xpath_text(encoding, 'FILENAME')
|
encoding_url = xpath_text(encoding, 'FILENAME')
|
||||||
if encoding_url:
|
if encoding_url:
|
||||||
formats.append({
|
formats.append({
|
||||||
|
Loading…
Reference in New Issue
Block a user