##// END OF EJS Templates
mq: correct the use of super...
Alexis S. L. Carvalho -
r2742:2f13f8d3 default
parent child Browse files
Show More
@@ -1393,7 +1393,7 b' def reposetup(ui, repo):'
1393 if self.tagscache:
1393 if self.tagscache:
1394 return self.tagscache
1394 return self.tagscache
1395
1395
1396 tagscache = super(self.__class__, self).tags()
1396 tagscache = super(MqRepo, self).tags()
1397
1397
1398 q = self.mq
1398 q = self.mq
1399 if not q.applied:
1399 if not q.applied:
General Comments 0
You need to be logged in to leave comments. Login now