Преглед на файлове

Have launch flush its output so that it can be grepped, etc.

Ian Goldberg преди 2 години
родител
ревизия
deaa5adc41
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      App/launch

+ 1 - 1
App/launch

@@ -34,7 +34,7 @@ def launch(node, manifest, config):
         line = proc.stdout.readline()
         if not line:
             break
-        print(node + ": " + line.decode('utf-8'), end='')
+        print(node + ": " + line.decode('utf-8'), end='', flush=True)
 
 
 if __name__ == "__main__":