Skip to content

Commit

Permalink
Port interactive window export fix (#14232)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanMatthewHuff authored Oct 2, 2020
1 parent ef278da commit f4762cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Changelog

## 2020.9.2 (2 October 2020)
## 2020.9.2 (5 October 2020)

### Fixes

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

### Thanks

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export class InteractiveWindow extends InteractiveBase implements IInteractiveWi
break;

case InteractiveWindowMessages.ExportNotebookAs:
this.handleMessage(message, payload, this.exportAs.bind);
this.handleMessage(message, payload, this.exportAs);
break;

case InteractiveWindowMessages.HasCellResponse:
Expand Down

0 comments on commit f4762cb

Please sign in to comment.