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

history: special case required for bundle --base null

Changeset 5a851216b2c0

Parent f8860383d3d0

by Steve Borho

Changes to one file · Browse files at 5a851216b2c0 Showing diff from parent f8860383d3d0 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​history.py Stacked
 
525
526
527
 
 
528
529
530
 
525
526
527
528
529
530
531
532
@@ -525,6 +525,8 @@
  try:   rev = int(self.currow[treemodel.REVID])   parent = self.repo[rev].parents()[0].rev() + # Special case for revision 0's parent. + if parent == -1: parent = 'null'   except (ValueError, LookupError):   return   filename = "%s_rev%d_to_tip.hg" % (os.path.basename(self.repo.root), rev)