Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

logview: fix --limit argument

where's that brown-paper bag at when you need it?

Fixes #249

Changeset 15cf316bbf3c

Parent 50db74923ce9

by Steve Borho

Changes to one file · Browse files at 15cf316bbf3c Showing diff from parent 50db74923ce9 Diff from another changeset...

 
172
173
174
175
 
176
177
178
 
172
173
174
 
175
176
177
178
@@ -172,7 +172,7 @@
  rowref = self.model.get_iter(len(self.graphdata)-1)   path = self.model.get_path(rowref)   self.model.row_inserted(path, rowref) - if self.limit and len(self.graphdata) < self.limit: + if self.limit and len(self.graphdata) >= self.limit:   break   except StopIteration:   stopped = True