diff: Better title rendering

This commit is contained in:
Kovid Goyal
2018-05-08 23:02:00 +05:30
parent 9cb7a6b2c7
commit 7365ed9b05
3 changed files with 16 additions and 7 deletions

View File

@@ -46,7 +46,7 @@ class DiffHandler(Handler):
def __init__(self, args, opts, left, right):
self.state = INITIALIZING
self.opts = opts
self.left, self.right = map(os.path.abspath, (left, right))
self.left, self.right = left, right
self.report_traceback_on_exit = None
self.args = args
self.scroll_pos = self.max_scroll_pos = 0