Skip to content

Commit f4762cb

Browse files
Port interactive window export fix (#14232)
1 parent ef278da commit f4762cb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# Changelog
22

3-
## 2020.9.2 (2 October 2020)
3+
## 2020.9.2 (5 October 2020)
44

55
### Fixes
66

77
1. Support nbconvert version 6+ for exporting notebooks to python code.
88
([#14169](https://github.com/Microsoft/vscode-python/issues/14169))
99
1. Do not escape output in the actual ipynb file.
1010
([#14182](https://github.com/Microsoft/vscode-python/issues/14182))
11+
1. Fix exporting from the interactive window.
12+
([#14210](https://github.com/Microsoft/vscode-python/issues/14210))
1113

1214
### Thanks
1315

src/client/datascience/interactive-window/interactiveWindow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ export class InteractiveWindow extends InteractiveBase implements IInteractiveWi
256256
break;
257257

258258
case InteractiveWindowMessages.ExportNotebookAs:
259-
this.handleMessage(message, payload, this.exportAs.bind);
259+
this.handleMessage(message, payload, this.exportAs);
260260
break;
261261

262262
case InteractiveWindowMessages.HasCellResponse:

0 commit comments

Comments
 (0)