##// END OF EJS Templates
changegroup: call rev() on manifestlog instance...
Gregory Szorc -
r39272:a79279a2 default
parent child Browse files
Show More
@@ -946,8 +946,6 b' class cgpacker(object):'
946 clrevorder = {}
946 clrevorder = {}
947 mfs = {} # needed manifests
947 mfs = {} # needed manifests
948 mfl = self._repo.manifestlog
948 mfl = self._repo.manifestlog
949 # TODO violates storage abstraction.
950 mfrevlog = mfl._revlog
951 changedfiles = set()
949 changedfiles = set()
952 clrevtomanifestrev = {}
950 clrevtomanifestrev = {}
953
951
@@ -973,7 +971,7 b' class cgpacker(object):'
973 # manifest revnum to look up for this cl revnum. (Part of
971 # manifest revnum to look up for this cl revnum. (Part of
974 # mapping changelog ellipsis parents to manifest ellipsis
972 # mapping changelog ellipsis parents to manifest ellipsis
975 # parents)
973 # parents)
976 clrevtomanifestrev.setdefault(cl.rev(x), mfrevlog.rev(n))
974 clrevtomanifestrev.setdefault(cl.rev(x), mfl.rev(n))
977 # We can't trust the changed files list in the changeset if the
975 # We can't trust the changed files list in the changeset if the
978 # client requested a shallow clone.
976 # client requested a shallow clone.
979 if self._isshallow:
977 if self._isshallow:
General Comments 0
You need to be logged in to leave comments. Login now