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

fix bad merge f5190119b6c7

fixes (again)

Traceback (most recent call last):
File "tortoisehg\hgqt\repowidget.pyo", line 1535, in qimportRevision
TypeError: match() takes exactly 2 arguments (1 given)

Changeset 9dc95d8028ef

Parent 59ad201f0fac

by Adrian Buehlmann

Changes to one file · Browse files at 9dc95d8028ef Showing diff from parent 59ad201f0fac Diff from another changeset...

 
1532
1533
1534
1535
 
1536
1537
1538
 
1532
1533
1534
 
1535
1536
1537
1538
@@ -1532,7 +1532,7 @@
    # Check whether there are existing patches in the MQ queue whose name   # collides with the revisions that are going to be imported - func = revset.match('%s::%s' % (self.rev, endrev)) + func = hglib.revsetmatch(self.repo.ui, '%s::%s' % (self.rev, endrev))   revList = [c for c in func(self.repo, range(len(self.repo)))]     if endrev and not revList: