diff --git a/CHANGELOG.md b/CHANGELOG.md index d033a7beb59f..5e0fadce9e00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 2020.9.2 (2 October 2020) +## 2020.9.2 (5 October 2020) ### Fixes @@ -8,6 +8,8 @@ ([#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 diff --git a/src/client/datascience/interactive-window/interactiveWindow.ts b/src/client/datascience/interactive-window/interactiveWindow.ts index 3dd40ec874cd..fd1b2388a161 100644 --- a/src/client/datascience/interactive-window/interactiveWindow.ts +++ b/src/client/datascience/interactive-window/interactiveWindow.ts @@ -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: