Show More
@@ -239,7 +239,7 b' class TerminalInteractiveShell(InteractiveShell):' | |||
|
239 | 239 | # Ignore blank lines and consecutive duplicates |
|
240 | 240 | cell = cell.rstrip() |
|
241 | 241 | if cell and (cell != last_cell): |
|
242 | history.append(cell) | |
|
242 | history.append(cast_unicode_py2(cell)) | |
|
243 | 243 | last_cell = cell |
|
244 | 244 | |
|
245 | 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