[fix] pep8

This commit is contained in:
Thomas Pointhuber 2015-01-10 20:01:36 +01:00
parent c19b0899a4
commit 811515101b

View file

@ -83,11 +83,11 @@ def response(resp):
# convert filesize to byte
if filesize_multiplier == 'TB':
filesize = int(filesize * 1024*1024*1024*1024)
filesize = int(filesize * 1024 * 1024 * 1024 * 1024)
elif filesize_multiplier == 'GB':
filesize = int(filesize * 1024*1024*1024)
filesize = int(filesize * 1024 * 1024 * 1024)
elif filesize_multiplier == 'MB':
filesize = int(filesize * 1024*1024)
filesize = int(filesize * 1024 * 1024)
elif filesize_multiplier == 'kb':
filesize = int(filesize * 1024)
except:
@ -112,7 +112,7 @@ def response(resp):
'filesize': filesize,
'files': files,
'magnetlink': magnetlink,
'torrentfile':torrentfile,
'torrentfile': torrentfile,
'template': 'torrent.html'})
# return results sorted by seeder