Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

stable datamine: add back support for hg-1.4

Changeset 8fd3cc10d275

Parent 4d0051b2f56b

by Steve Borho

Changes to one file · Browse files at 8fd3cc10d275 Showing diff from parent 4d0051b2f56b Diff from another changeset...

 
768
769
770
771
772
 
 
 
 
 
773
774
775
 
768
769
770
 
 
771
772
773
774
775
776
777
778
@@ -768,8 +768,11 @@
    (frame, treeview, origpath, graphview) = objs   q = Queue.Queue() - args = [q, 'annotate', '--follow', '--number', '--file', - '--rev', str(rev), 'path:'+path] + # Use short -f here because it's meaning has changed, it used + # to be --follow but now it means --file. We want either. + # Replace -f with --file when support for hg-1.4 is dropped + args = [q, 'annotate', '-f', '--number', '--rev', str(rev), + 'path:'+path]   thread = thread2.Thread(target=threadfunc, args=args)   thread.start()   frame._mythread = thread