##// END OF EJS Templates
context: remove assumptions about manifest creation during _buildstatus...
Durham Goode -
r31260:aac054e5 default
parent child Browse files
Show More
@@ -117,10 +117,12 b' class basectx(object):'
117 # 1000 and cache it so that when you read 1001, we just need to apply a
117 # 1000 and cache it so that when you read 1001, we just need to apply a
118 # delta to what's in the cache. So that's one full reconstruction + one
118 # delta to what's in the cache. So that's one full reconstruction + one
119 # delta application.
119 # delta application.
120 mf2 = None
120 if self.rev() is not None and self.rev() < other.rev():
121 if self.rev() is not None and self.rev() < other.rev():
121 self.manifest()
122 mf2 = self._manifestmatches(match, s)
122 mf1 = other._manifestmatches(match, s)
123 mf1 = other._manifestmatches(match, s)
123 mf2 = self._manifestmatches(match, s)
124 if mf2 is None:
125 mf2 = self._manifestmatches(match, s)
124
126
125 modified, added = [], []
127 modified, added = [], []
126 removed = []
128 removed = []
General Comments 0
You need to be logged in to leave comments. Login now