8000 FIX: issue #146 (No output in Matlab 2020b) · Calysto/matlab_kernel@be8ac96 · GitHub
[go: up one dir, main page]

Skip to content

Commit be8ac96

Browse files
author
Davide Cester
committed
FIX: issue #146 (No output in Matlab 2020b)
1 parent ab41f9b commit be8ac96
< D163 /div>

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

matlab_kernel/kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def _execute_async(self, code):
253253
try:
254254
with pipes(stdout=_PseudoStream(partial(self.Print, end="")),
255255
stderr=_PseudoStream(partial(self.Error, end=""))):
256-
kwargs = { 'nargout': 0, 'async': True }
256+
kwargs = { 'nargout': 0, 'background': True }
257257
future = self._matlab.eval(code, **kwargs)
258258
future.result()
259259
except (SyntaxError, MatlabExecutionError, KeyboardInterrupt) as exc:

0 commit comments

Comments
 (0)
0