##// END OF EJS Templates
convert: don't reimplement any()...
Martin von Zweigbergk -
r36358:06464d1c default
parent child Browse files
Show More
@@ -563,12 +563,7 b' class mercurial_source(common.converter_'
563 563 if copysource in self.ignored:
564 564 continue
565 565 # Ignore copy sources not in parent revisions
566 found = False
567 for p in parents:
568 if copysource in p:
569 found = True
570 break
571 if not found:
566 if not any(copysource in p for p in parents):
572 567 continue
573 568 copies[name] = copysource
574 569 except TypeError:
General Comments 0
You need to be logged in to leave comments. Login now