##// END OF EJS Templates
Correct erroneous behaviour when doing:...
ldufrechou -
Show More
@@ -1,1 +1,2 b''
1 [LF]
1 *.py
2 *.py
@@ -522,7 +522,7 b' class IPShellWidget(wx.Panel):'
522 def stateDoExecuteLine(self):
522 def stateDoExecuteLine(self):
523 #print >>sys.__stdout__,"command:",self.getCurrentLine()
523 #print >>sys.__stdout__,"command:",self.getCurrentLine()
524 line=self.text_ctrl.getCurrentLine()
524 line=self.text_ctrl.getCurrentLine()
525 self.IP.doExecute(line.replace('\t',' '*4))
525 self.IP.doExecute((line.replace('\t',' '*4)).encode('cp1252'))
526 self.updateHistoryTracker(self.text_ctrl.getCurrentLine())
526 self.updateHistoryTracker(self.text_ctrl.getCurrentLine())
527 self.setCurrentState('WAIT_END_OF_EXECUTION')
527 self.setCurrentState('WAIT_END_OF_EXECUTION')
528
528
General Comments 0
You need to be logged in to leave comments. Login now