Show More
@@ -283,8 +283,6 b' class cg1packer(object):' | |||||
283 | if bundlecaps is None: |
|
283 | if bundlecaps is None: | |
284 | bundlecaps = set() |
|
284 | bundlecaps = set() | |
285 | self._bundlecaps = bundlecaps |
|
285 | self._bundlecaps = bundlecaps | |
286 | self._changelog = repo.changelog |
|
|||
287 | self._manifest = repo.manifest |
|
|||
288 | reorder = repo.ui.config('bundle', 'reorder', 'auto') |
|
286 | reorder = repo.ui.config('bundle', 'reorder', 'auto') | |
289 | if reorder == 'auto': |
|
287 | if reorder == 'auto': | |
290 | reorder = None |
|
288 | reorder = None | |
@@ -359,8 +357,8 b' class cg1packer(object):' | |||||
359 | def generate(self, commonrevs, clnodes, fastpathlinkrev, source): |
|
357 | def generate(self, commonrevs, clnodes, fastpathlinkrev, source): | |
360 | '''yield a sequence of changegroup chunks (strings)''' |
|
358 | '''yield a sequence of changegroup chunks (strings)''' | |
361 | repo = self._repo |
|
359 | repo = self._repo | |
362 |
cl = |
|
360 | cl = repo.changelog | |
363 |
ml = |
|
361 | ml = repo.manifest | |
364 |
|
362 | |||
365 | clrevorder = {} |
|
363 | clrevorder = {} | |
366 | mfs = {} # needed manifests |
|
364 | mfs = {} # needed manifests |
General Comments 0
You need to be logged in to leave comments.
Login now