1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-04 02:36:04 +08:00

Fixed missing semicolon

This commit is contained in:
denneboomyo 2017-03-04 17:04:21 +01:00 committed by GitHub
parent 322d0a1950
commit 28336f28b4

View File

@ -75,7 +75,7 @@ class OpenloadIE(InfoExtractor):
'<span[^>]+id="[^"]+"[^>]*>([0-9A-Za-z]+)</span>',
webpage, 'openload ID')
video_url_chars = []
video_url_chars = [];
first_char = compat_ord(ol_id[0]);
key = first_char - 55;