Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.6, 0.7, and 0.7.1

hg-crew-tip hggtk/commit: fix use of changelog.count()

Changeset f2bdc2e91665

Parent 12d443aa23b7

by Peter Arrenbrecht

Changes to one file · Browse files at f2bdc2e91665 Showing diff from parent 12d443aa23b7 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​commit.py Stacked
 
342
343
344
345
 
346
347
348
 
342
343
344
 
345
346
347
348
@@ -342,7 +342,7 @@
  if refresh:   self.repo.invalidate()   cl = self.repo.changelog - tip = cl.node(nullrev + cl.count()) + tip = cl.node(nullrev + len(cl))   return hex(tip)    def launch(root='', files=[], cwd='', main=True):