Blame SOURCES/0001-Ensure-that-all-output-reaches-the-client-when-daemo.patch

1aaf41
From 949c674b807ddfb312cbac234b1b995066c77dad Mon Sep 17 00:00:00 2001
1aaf41
From: Matt Coleman <matt@datto.com>
1aaf41
Date: Thu, 7 Nov 2019 19:43:57 -0500
1aaf41
Subject: [PATCH] Ensure that all output reaches the client when daemonized
1aaf41
1aaf41
---
1aaf41
 configshell/console.py | 2 +-
1aaf41
 1 file changed, 1 insertion(+), 1 deletion(-)
1aaf41
1aaf41
diff --git a/configshell/console.py b/configshell/console.py
1aaf41
index 8ed6b50..003a855 100644
1aaf41
--- a/configshell/console.py
1aaf41
+++ b/configshell/console.py
1aaf41
@@ -191,7 +191,7 @@ class Console(object):
1aaf41
                 break
1aaf41
         else:
1aaf41
             clean_text = text
1aaf41
-        self.raw_write(clean_text)
1aaf41
+        self.raw_write(clean_text, output=self._stdout)
1aaf41
 
1aaf41
     def indent(self, text, margin=2):
1aaf41
         '''
1aaf41
-- 
1aaf41
2.21.0
1aaf41