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

repowidget: add missing argument in mercurial.revset.match

mercurial.revset.match requires two arguments since 9f5a0acb0056

Changeset 57d5c9736b4e

Parent 947f5fed5f91

by André Sintzoff

Changes to one file · Browse files at 57d5c9736b4e Showing diff from parent 947f5fed5f91 Diff from another changeset...

 
1084
1085
1086
1087
 
1088
1089
1090
 
1084
1085
1086
 
1087
1088
1089
1090
@@ -1084,7 +1084,7 @@
  B, A = self.menuselection   else:   A, B = self.menuselection - func = revset.match('%s::%s' % (A, B)) + func = revset.match(self.repo.ui, '%s::%s' % (A, B))   return [c for c in func(self.repo, range(len(self.repo)))]     def exportPair():