Skip to content

Commit 954619c

Browse files
committed
sep="" is not needed to fix #121, so we undo it
1 parent 13d76fb commit 954619c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

matlab_kernel/kernel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ def do_shutdown(self, restart):
249249

250250
def _execute_async(self, code):
251251
try:
252-
with pipes(stdout=_PseudoStream(partial(self.Print, sep="", end="")),
253-
stderr=_PseudoStream(partial(self.Error, sep="", end=""))):
252+
with pipes(stdout=_PseudoStream(partial(self.Print, end="")),
253+
stderr=_PseudoStream(partial(self.Error, end=""))):
254254
kwargs = { 'nargout': 0, 'async': True }
255255
future = self._matlab.eval(code, **kwargs)
256256
future.result()

0 commit comments

Comments
 (0)