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