mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
validate:launcher: Flush stdout each time we print
So everything gets printed on time on windows and jenkins
This commit is contained in:
parent
36a0f6a674
commit
78f91ae8da
1 changed files with 2 additions and 1 deletions
|
@ -119,7 +119,8 @@ def printc(message, color="", title=False):
|
|||
if hasattr(message, "result") and color == '':
|
||||
color = get_color_for_result(message.result)
|
||||
|
||||
print color + str(message) + Colors.ENDC
|
||||
sys.stdout.write(color + str(message) + Colors.ENDC + "\n")
|
||||
sys.stdout.flush()
|
||||
|
||||
|
||||
def launch_command(command, color=None):
|
||||
|
|
Loading…
Reference in a new issue