diff -r 5bb5d4ba14e5 -r 7a20fe8dc080 mercurial/localrepo.py --- a/mercurial/localrepo.py Thu Apr 17 02:01:38 2014 -0400 +++ b/mercurial/localrepo.py Thu Apr 17 15:27:54 2014 -0400 @@ -109,7 +109,7 @@ format='HG10'): cg = exchange.getbundle(self._repo, source, heads=heads, common=common, bundlecaps=bundlecaps) - if bundlecaps is not None and 'HG20' in bundlecaps: + if bundlecaps is not None and 'HG2X' in bundlecaps: # When requesting a bundle2, getbundle returns a stream to make the # wire level function happier. We need to build a proper object # from it in local peer. @@ -180,7 +180,7 @@ requirements = ['revlogv1'] filtername = None - bundle2caps = {'HG20': ()} + bundle2caps = {'HG2X': ()} # a list of (ui, featureset) functions. # only functions defined in module of enabled extensions are invoked