Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9.1.1, 0.9.2, and 0.9.3

stable history: do not visual diff a None revision

Fixes #781

Changeset 1e331f4fd1ec

Parent cc932a768df0

by Steve Borho

Changes to one file · Browse files at 1e331f4fd1ec Showing diff from parent cc932a768df0 Diff from another changeset...

 
1583
1584
1585
 
 
1586
1587
1588
 
1583
1584
1585
1586
1587
1588
1589
1590
@@ -1583,6 +1583,8 @@
  dlg.hide()     def vdiff_change(self, menuitem, pats=[]): + if self.currevid is None: + return   rev = self.currevid   opts = {'change':str(rev), 'bundle':self.bfile}   parents = self.repo[rev].parents()