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

commit: fix off-by-one error in reload()

Changeset c26149e5717e

Parent 0344760a0f89

by Steve Borho

Changes to one file · Browse files at c26149e5717e Showing diff from parent 0344760a0f89 Diff from another changeset...

 
161
162
163
164
 
165
166
167
 
161
162
163
 
164
165
166
167
@@ -161,7 +161,7 @@
  fmt = "<span style='font-family:Courier'>%s(%s)</span> %s"   ptext = fmt % (ctx.rev(), short_hex(ctx.node()), desc)   ptext = _('<b>Parent: </b>') + ptext - if i > len(self.parentlabels): + if i >= len(self.parentlabels):   lbl = QLabel(ptext)   self.parentvbox.addWidget(lbl)   self.parentlabels.append(lbl)