equal
deleted
inserted
replaced
756 # for progress output |
756 # for progress output |
757 msgfiles = _('files') |
757 msgfiles = _('files') |
758 for i, fname in enumerate(sorted(changedfiles)): |
758 for i, fname in enumerate(sorted(changedfiles)): |
759 filerevlog = repo.file(fname) |
759 filerevlog = repo.file(fname) |
760 if not filerevlog: |
760 if not filerevlog: |
761 raise error.Abort(_("empty or missing revlog for %s") % fname) |
761 raise error.Abort(_("empty or missing file data for %s") % |
|
762 fname) |
762 |
763 |
763 linkrevnodes = linknodes(filerevlog, fname) |
764 linkrevnodes = linknodes(filerevlog, fname) |
764 # Lookup for filenodes, we collected the linkrev nodes above in the |
765 # Lookup for filenodes, we collected the linkrev nodes above in the |
765 # fastpath case and with lookupmf in the slowpath case. |
766 # fastpath case and with lookupmf in the slowpath case. |
766 def lookupfilelog(x): |
767 def lookupfilelog(x): |