mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
Rename PopenResult.stdout to output since it also contains stderr
This commit is contained in:
parent
22f4ed4b7a
commit
8888962ace
6 changed files with 41 additions and 41 deletions
|
|
@ -101,9 +101,9 @@ def main():
|
|||
raise Exception("Failed to unpack remote build of " + apkfilename)
|
||||
|
||||
p = FDroidPopen(['diff', '-r', 'this_apk', 'that_apk'], cwd=tmp_dir)
|
||||
lines = p.stdout.splitlines()
|
||||
lines = p.output.splitlines()
|
||||
if len(lines) != 1 or 'META-INF' not in lines[0]:
|
||||
raise Exception("Unexpected diff output - " + p.stdout)
|
||||
raise Exception("Unexpected diff output - " + p.output)
|
||||
|
||||
logging.info("...successfully verified")
|
||||
verified += 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue