mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 06:52:39 +03:00
fix PEP8 "E225 missing whitespace around operator"
This commit is contained in:
parent
c54cabe741
commit
7e17fafc14
5 changed files with 6 additions and 6 deletions
|
@ -98,7 +98,7 @@ def main():
|
|||
for dev in devs:
|
||||
logging.info("Installing %s on %s..." % (apk, dev))
|
||||
p = FDroidPopen(["adb", "-s", dev, "install", apk])
|
||||
fail= ""
|
||||
fail = ""
|
||||
for line in p.stdout.splitlines():
|
||||
if line.startswith("Failure"):
|
||||
fail = line[9:-1]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue