File tree 2 files changed +4
-2
lines changed
src/client/datascience/interactive-window
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 2020.9.2 (2 October 2020)
3
+ ## 2020.9.2 (5 October 2020)
4
4
5
5
### Fixes
6
6
7
7
1 . Support nbconvert version 6+ for exporting notebooks to python code.
8
8
([ #14169 ] ( https://github.com/Microsoft/vscode-python/issues/14169 ) )
9
9
1 . Do not escape output in the actual ipynb file.
10
10
([ #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 ) )
11
13
12
14
### Thanks
13
15
Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ export class InteractiveWindow extends InteractiveBase implements IInteractiveWi
256
256
break ;
257
257
258
258
case InteractiveWindowMessages . ExportNotebookAs :
259
- this . handleMessage ( message , payload , this . exportAs . bind ) ;
259
+ this . handleMessage ( message , payload , this . exportAs ) ;
260
260
break ;
261
261
262
262
case InteractiveWindowMessages . HasCellResponse :
You can’t perform that action at this time.
0 commit comments