From 5ac73e154a8539b163da1689341ceed98b6edb36 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Diemer?= <stephane.diemer@ubicast.eu>
Date: Thu, 2 Feb 2017 08:51:12 +0100
Subject: [PATCH] Flush out and err in exec cmd fct.

---
 utils.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/utils.py b/utils.py
index 1f786c44..72ea1e22 100644
--- a/utils.py
+++ b/utils.py
@@ -36,6 +36,9 @@ def exec_cmd(cmd, log_output=True, get_output=True):
         out = out.strip()
         if log_output:
             log(out)
+    elif log_output:
+        sys.stdout.flush()
+        sys.stderr.flush()
     return p.returncode, out
 
 
-- 
GitLab