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

p4pending: more careful parsing of p4pending output

Changeset 9f0e285e51d2

Parent f397755e871f

by Steve Borho

Changes to one file · Browse files at 9f0e285e51d2 Showing diff from parent f397755e871f Diff from another changeset...

 
682
683
684
 
 
685
686
687
 
688
689
690
 
682
683
684
685
686
687
688
689
690
691
692
693
@@ -682,9 +682,12 @@
  pending = {}   if ret == 0:   for line in output.splitlines(): + if line.startswith('ignoring hg revision'): + continue   try:   hashes = line.split(' ')   changelist = hashes.pop(0) + clnum = int(changelist)   if len(hashes)>1 and len(hashes[0])==1:   state = hashes.pop(0)   if state == 's':