##// END OF EJS Templates
Attempt at fixing assertion from reverse search...
Thomas Kluyver -
Show More
@@ -239,7 +239,7 b' class TerminalInteractiveShell(InteractiveShell):'
239 # Ignore blank lines and consecutive duplicates
239 # Ignore blank lines and consecutive duplicates
240 cell = cell.rstrip()
240 cell = cell.rstrip()
241 if cell and (cell != last_cell):
241 if cell and (cell != last_cell):
242 history.append(cell)
242 history.append(cast_unicode_py2(cell))
243 last_cell = cell
243 last_cell = cell
244
244
245 self._style = self._make_style_from_name_or_cls(self.highlighting_style)
245 self._style = self._make_style_from_name_or_cls(self.highlighting_style)
General Comments 0
You need to be logged in to leave comments. Login now