equal
deleted
inserted
replaced
771 toprint = unknownset.copy() |
771 toprint = unknownset.copy() |
772 toprint.update(deleted) |
772 toprint.update(deleted) |
773 for abs in sorted(toprint): |
773 for abs in sorted(toprint): |
774 if repo.ui.verbose or not m.exact(abs): |
774 if repo.ui.verbose or not m.exact(abs): |
775 if abs in unknownset: |
775 if abs in unknownset: |
776 status = _('adding %s\n') % m.uipath(join(abs)) |
776 status = _('adding %s\n') % m.uipath(abs) |
777 else: |
777 else: |
778 status = _('removing %s\n') % m.uipath(join(abs)) |
778 status = _('removing %s\n') % m.uipath(abs) |
779 repo.ui.status(status) |
779 repo.ui.status(status) |
780 |
780 |
781 renames = _findrenames(repo, m, added + unknown, removed + deleted, |
781 renames = _findrenames(repo, m, added + unknown, removed + deleted, |
782 similarity) |
782 similarity) |
783 |
783 |