Submitter | phabricator |
---|---|
Date | Dec. 12, 2017, 11:25 p.m. |
Message ID | <differential-rev-PHID-DREV-b3l3uuvbz6a6vp7y5tce-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/26251/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/bundlerepo.py b/mercurial/bundlerepo.py --- a/mercurial/bundlerepo.py +++ b/mercurial/bundlerepo.py @@ -541,10 +541,10 @@ and other.capable('bundle2')) if canbundle2: kwargs = {} - kwargs['common'] = common - kwargs['heads'] = rheads - kwargs['bundlecaps'] = exchange.caps20to10(repo) - kwargs['cg'] = True + kwargs[r'common'] = common + kwargs[r'heads'] = rheads + kwargs[r'bundlecaps'] = exchange.caps20to10(repo) + kwargs[r'cg'] = True b2 = other.getbundle('incoming', **kwargs) fname = bundle = changegroup.writechunks(ui, b2._forwardchunks(), bundlename)