##// END OF EJS Templates
narrowchangegroup: remove backwards compatibility with old hg...
Augie Fackler -
r36368:ff7a19ad default
parent child Browse files
Show More
@@ -215,13 +215,8 b' def setup():'
215 # weren't introduced by that manifest.
215 # weren't introduced by that manifest.
216 fastpathlinkrev = fastpathlinkrev and not self.is_shallow
216 fastpathlinkrev = fastpathlinkrev and not self.is_shallow
217
217
218 moreargs = []
219 if self.generatemanifests.func_code.co_argcount == 7:
220 # The source argument was added to generatemanifests in hg in
221 # 75cc1f1e11f2 (2017/09/11).
222 moreargs.append(source)
223 for chunk in self.generatemanifests(commonrevs, clrevorder,
218 for chunk in self.generatemanifests(commonrevs, clrevorder,
224 fastpathlinkrev, mfs, fnodes, *moreargs):
219 fastpathlinkrev, mfs, fnodes, source):
225 yield chunk
220 yield chunk
226 # BEGIN NARROW HACK
221 # BEGIN NARROW HACK
227 mfdicts = None
222 mfdicts = None
General Comments 0
You need to be logged in to leave comments. Login now