From 811515101b750717f6b07fad1a9b75041f91c90d Mon Sep 17 00:00:00 2001 From: Thomas Pointhuber Date: Sat, 10 Jan 2015 20:01:36 +0100 Subject: [PATCH] [fix] pep8 --- searx/engines/kickass.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/searx/engines/kickass.py b/searx/engines/kickass.py index 39b50b0..a4d2706 100644 --- a/searx/engines/kickass.py +++ b/searx/engines/kickass.py @@ -80,16 +80,16 @@ def response(resp): # convert filesize to byte if possible try: filesize = float(filesize) - + # 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) + filesize = int(filesize * 1024) except: filesize = None @@ -100,7 +100,7 @@ def response(resp): files = None magnetlink = result.xpath(magnet_xpath)[0].attrib['href'] - + torrentfile = result.xpath(torrent_xpath)[0].attrib['href'] # append result @@ -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