Skip to content

Commit

Permalink
Merge pull request #4706 from pkulak/master
Browse files Browse the repository at this point in the history
Fix Youtube encrypted sigs.
  • Loading branch information
dstftw committed Jan 15, 2015
2 parents a45c0a5 + a9b6b5c commit 9fa6ea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/youtube.py
Expand Up @@ -588,7 +588,7 @@ def _genslice(start, end, step):

def _parse_sig_js(self, jscode):
funcname = self._search_regex(
r'\.sig\|\|([a-zA-Z0-9]+)\(', jscode,
r'\.sig\|\|([a-zA-Z0-9\$]+)\(', jscode,
'Initial JS player signature function name')

jsi = JSInterpreter(jscode)
Expand Down

0 comments on commit 9fa6ea2

Please sign in to comment.