##// END OF EJS Templates
Remove python 2 specific line.
Terry Davis -
Show More
@@ -35,5 +35,4 b' with dest:'
35 hist = HistoryAccessor()
35 hist = HistoryAccessor()
36
36
37 for session, lineno, cell in hist.get_range(session=session_number, raw=raw):
37 for session, lineno, cell in hist.get_range(session=session_number, raw=raw):
38 cell = cell.encode('utf-8') # This line is only needed on Python 2.
39 dest.write(cell + '\n')
38 dest.write(cell + '\n')
General Comments 0
You need to be logged in to leave comments. Login now