##// END OF EJS Templates
Merge pull request #13091 from madbird1304/madbird1304/issue#12897...
Matthias Bussonnier -
r26757:e7680611 merge
parent child Browse files
Show More
@@ -204,9 +204,8 b' class TerminalInteractiveShell(InteractiveShell):'
204 204
205 205 @observe('editing_mode')
206 206 def _editing_mode(self, change):
207 u_mode = change.new.upper()
208 207 if self.pt_app:
209 self.pt_app.editing_mode = u_mode
208 self.pt_app.editing_mode = getattr(EditingMode, change.new.upper())
210 209
211 210 @observe('autoformatter')
212 211 def _autoformatter_changed(self, change):
General Comments 0
You need to be logged in to leave comments. Login now