diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-11-03 14:03:17 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-11-03 14:06:47 +0100 |
commit | a56f9de156c7cca29dfa45de1dadc66e10a265f2 (patch) | |
tree | 308ddf73354279b517b801aa0655ae5e08055cd6 /youtube_dl/extractor/hypem.py | |
parent | fa5d47af4b82356c39c1e8d7b2ada9b539371735 (diff) |
Style fixes for extractors: remove spaces around (,),{ and }
Diffstat (limited to 'youtube_dl/extractor/hypem.py')
-rw-r--r-- | youtube_dl/extractor/hypem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/hypem.py b/youtube_dl/extractor/hypem.py index ab2b59103..9bd06e7c7 100644 --- a/youtube_dl/extractor/hypem.py +++ b/youtube_dl/extractor/hypem.py @@ -30,7 +30,7 @@ class HypemIE(InfoExtractor): raise ExtractorError(u'Invalid URL: %s' % url) track_id = mobj.group(1) - data = { 'ax': 1, 'ts': time.time() } + data = {'ax': 1, 'ts': time.time()} data_encoded = compat_urllib_parse.urlencode(data) complete_url = url + "?" + data_encoded request = compat_urllib_request.Request(complete_url) @@ -68,4 +68,4 @@ class HypemIE(InfoExtractor): 'ext': "mp3", 'title': title, 'artist': artist, - }]
\ No newline at end of file + }] |