fix PEP8 "E225 missing whitespace around operator"

This commit is contained in:
Hans-Christoph Steiner 2014-05-01 22:30:44 -04:00
parent c54cabe741
commit 7e17fafc14
5 changed files with 6 additions and 6 deletions

View file

@ -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]