Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.1, 1.9.2, and 1.9.3

sync: ignore outgoing output lines that do not look like hashes

Changeset 17c1e1724353

Parent 56b2c0483ea0

by Steve Borho

Changes to one file · Browse files at 17c1e1724353 Showing diff from parent 56b2c0483ea0 Diff from another changeset...

 
655
656
657
658
 
659
660
661
 
733
734
735
736
 
737
738
739
 
655
656
657
 
658
659
660
661
 
733
734
735
 
736
737
738
739
@@ -655,7 +655,7 @@
  if self.embedded:   def outputnodes(ret, data):   if ret == 0: - nodes = data.splitlines() + nodes = [n for n in data.splitlines() if len(n) == 40]   self.outgoingNodes.emit(nodes)   self.showMessage.emit(_('%d outgoing changesets') %   len(nodes)) @@ -733,7 +733,7 @@
  self.showMessage.emit(_('Determining outgoing changesets to email...'))   def outputnodes(ret, data):   if ret == 0: - nodes = data.splitlines() + nodes = [n for n in data.splitlines() if len(n) == 40]   self.showMessage.emit(_('%d outgoing changesets') %   len(nodes))   from tortoisehg.hgqt import run as _run