Submitter | Boris Feld |
---|---|
Date | Oct. 19, 2017, 8:48 p.m. |
Message ID | <204165f5fc88a88ad45d.1508446092@FB> |
Download | mbox | patch |
Permalink | /patch/25256/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/exchange.py b/mercurial/exchange.py --- a/mercurial/exchange.py +++ b/mercurial/exchange.py @@ -813,9 +813,9 @@ hasphaseheads = 'heads' in b2caps.get('phases', ()) if hasphaseheads and not legacyphase: - _pushb2phaseheads(pushop, bundler) + return _pushb2phaseheads(pushop, bundler) elif haspushkey: - _pushb2phasespushkey(pushop, bundler) + return _pushb2phasespushkey(pushop, bundler) def _pushb2phaseheads(pushop, bundler): """push phase information through a bundle2 - binary part"""