Browse Source

[aenetworks] Make pep8 happy

master
Jaime Marquínez Ferrándiz 8 years ago
parent
commit
329c1eae54
1 changed files with 3 additions and 2 deletions
  1. 5
      youtube_dl/extractor/aenetworks.py

5
youtube_dl/extractor/aenetworks.py

@ -75,8 +75,9 @@ class AENetworksIE(InfoExtractor):
info = self._search_json_ld(webpage, video_id, fatal=False) info = self._search_json_ld(webpage, video_id, fatal=False)
info.update({ info.update({
'_type': 'url_transparent', '_type': 'url_transparent',
'url': smuggle_url(update_url_query(
video_url, query), {
'url': smuggle_url(
update_url_query(video_url, query),
{
'sig': { 'sig': {
'key': 'crazyjava', 'key': 'crazyjava',
'secret': 's3cr3t'}, 'secret': 's3cr3t'},

Loading…
Cancel
Save