Style fixes for extractors: remove spaces around (,),{ and }

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-11-03 14:03:17 +01:00
parent fa5d47af4b
commit a56f9de156
13 changed files with 33 additions and 33 deletions

View file

@ -25,7 +25,7 @@ class DepositFilesIE(InfoExtractor):
url = 'http://depositfiles.com/en/files/' + file_id
# Retrieve file webpage with 'Free download' button pressed
free_download_indication = { 'gateway_result' : '1' }
free_download_indication = {'gateway_result' : '1'}
request = compat_urllib_request.Request(url, compat_urllib_parse.urlencode(free_download_indication))
try:
self.report_download_webpage(file_id)