diff --git a/src/Solver/CommandLine.py b/src/Solver/CommandLine.py index c72cf735..4afcbc9a 100644 --- a/src/Solver/CommandLine.py +++ b/src/Solver/CommandLine.py @@ -276,7 +276,7 @@ class CommandLineSolver(AbstractSolver): s = self._process.readAll().data().decode('utf-8', "replace") if self._output is not None: - for x in s.split('\n'): + for x in s.split(os.linesep): self._output.put(x) except Exception as e: logger_exception(e)