1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 23:23:27 +02:00

Fix PEP8 issues from latest pull request

This commit is contained in:
Ciaran Gultnieks 2015-01-13 08:26:30 +00:00
parent 12f65953e6
commit 24aaa568da

View File

@ -1898,9 +1898,9 @@ def compare_apks(apk1, apk2, tmp_dir):
return("Failed to unpack " + apk2)
# try to find apktool in the path, if it hasn't been manually configed
if not 'apktool' in config:
if 'apktool' not in config:
tmp = find_command('apktool')
if not tmp is None:
if tmp is not None:
config['apktool'] = tmp
if 'apktool' in config:
if subprocess.call([config['apktool'], 'd', os.path.abspath(apk1), '--output', 'apktool'],
@ -1914,7 +1914,7 @@ def compare_apks(apk1, apk2, tmp_dir):
lines = p.output.splitlines()
if len(lines) != 1 or 'META-INF' not in lines[0]:
meld = find_command('meld')
if not meld is None:
if meld is not None:
p = FDroidPopen(['meld', apk1dir, apk2dir], output=False)
return("Unexpected diff output - " + p.output)