Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable visdiff: use the rev string instead of the number in the title

Changeset 792a5ce47bf1

Parent fdb26e3c4ece

by Daniel Atallah

Changes to one file · Browse files at 792a5ce47bf1 Showing diff from parent fdb26e3c4ece Diff from another changeset...

 
365
366
367
368
 
369
370
 
 
371
372
373
 
365
366
367
 
368
369
 
370
371
372
373
374
@@ -365,9 +365,10 @@
  if ctx2.rev() is None:   title = _('working changes')   elif ctx1a == ctx2.parents()[0]: - title = _('changeset ') + str(ctx2.rev()) + title = _('changeset %d:%s') % (ctx2.rev(), ctx2)   else: - title = _('revisions %d to %d') % (ctx1a.rev(), ctx2.rev()) + title = _('revisions %d:%s to %d:%s') \ + % (ctx1a.rev(), ctx1a, ctx2.rev(), ctx2)   title = _('Visual Diffs - ') + title   if pats:   title += _(' filtered')