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

htmlui: fix off-by-one error

Changeset 1a97ea93f9a9

Parent 2d9407c8c685

by Steve Borho

Changes to one file · Browse files at 1a97ea93f9a9 Showing diff from parent 2d9407c8c685 Diff from another changeset...

 
62
63
64
65
 
66
67
68
 
62
63
64
 
65
66
67
68
@@ -62,7 +62,7 @@
  e = text.index(ENDTAG)   if e > b:   if b: - parts.append(self.style(text[:b-1], label)) + parts.append(self.style(text[:b], label))   parts.append(text[b+1:e])   text = text[e+1:]   else: