Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

fileview: ensure only integer revisions are emitted

Changeset 35bc11fb59ab

Parent b86996ca416c

by Steve Borho

Changes to one file · Browse files at 35bc11fb59ab Showing diff from parent b86996ca416c Diff from another changeset...

 
405
406
407
408
 
409
410
411
 
405
406
407
 
408
409
410
411
@@ -405,7 +405,7 @@
  @pyqtSlot(unicode, object)   @pyqtSlot(unicode, object, int)   def sourceChanged(self, path, rev, line=None): - if rev != self._ctx.rev(): + if rev != self._ctx.rev() and type(rev) is int:   self.revisionSelected.emit(rev)     @pyqtSlot(unicode, object, int)