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

repomodel: do not show patch names in revision column. Leave blank

Changeset df37219a2b3e

Parent 0e9e73cfc1f7

by Steve Borho

Changes to one file · Browse files at df37219a2b3e Showing diff from parent 0e9e73cfc1f7 Diff from another changeset...

 
83
84
85
86
 
87
88
89
 
83
84
85
 
86
87
88
89
@@ -83,7 +83,7 @@
  self._branch_colors = {}     self._columnmap = { - 'Rev': lambda ctx, gnode: ctx.rev() is not None and \ + 'Rev': lambda ctx, gnode: type(ctx.rev()) is int and \   str(ctx.rev()) or "",   'Node': lambda ctx, gnode: str(ctx),   'Graph': lambda ctx, gnode: "",