File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 74
74
75
75
* when save command history fails, do not do so silently. Closes :editor_issue:`225`.
76
76
77
+ * fixed saving command history to a path containing spaces. Closes :editor_issue:`244`.
78
+
77
79
* fixed compare() background color being red for two equal integer arrays instead of white
78
80
(closes :editor_issue:`246 `).
Original file line number Diff line number Diff line change @@ -952,7 +952,7 @@ def complete_slice(s):
952
952
953
953
with io .StringIO () as tmp_out :
954
954
with redirect_stdout (tmp_out ):
955
- self .kernel .shell .run_line_magic ('save' , f'{ overwrite } { filepath } { lines } ' )
955
+ self .kernel .shell .run_line_magic ('save' , f'{ overwrite } " { filepath } " { lines } ' )
956
956
stdout = tmp_out .getvalue ()
957
957
if 'commands were written to file' not in stdout :
958
958
raise Exception (stdout )
You can’t perform that action at this time.
0 commit comments