##// 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 if copysource in self.ignored:
563 if copysource in self.ignored:
564 continue
564 continue
565 # Ignore copy sources not in parent revisions
565 # Ignore copy sources not in parent revisions
566 found = False
566 if not any(copysource in p for p in parents):
567 for p in parents:
568 if copysource in p:
569 found = True
570 break
571 if not found:
572 continue
567 continue
573 copies[name] = copysource
568 copies[name] = copysource
574 except TypeError:
569 except TypeError:
General Comments 0
You need to be logged in to leave comments. Login now