##// END OF EJS Templates
verify: expand a one liner into explicit commands...
marmoute -
r48143:03dea855 default
parent child Browse files
Show More
@@ -139,11 +139,10 b' class verifier(object):'
139 if f and len(linkrevs) > 1:
139 if f and len(linkrevs) > 1:
140 try:
140 try:
141 # attempt to filter down to real linkrevs
141 # attempt to filter down to real linkrevs
142 linkrevs = [
142 linkrevs = []
143 l
143 for lr in linkrevs:
144 for l in linkrevs
144 if self.lrugetctx(lr)[f].filenode() == node:
145 if self.lrugetctx(l)[f].filenode() == node
145 linkrevs.append(lr)
146 ]
147 except Exception:
146 except Exception:
148 pass
147 pass
149 self._warn(
148 self._warn(
General Comments 0
You need to be logged in to leave comments. Login now