Submitter | phabricator |
---|---|
Date | Feb. 7, 2018, 10:41 p.m. |
Message ID | <ad85368a0160dc8a747cb49c28d09b61@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/27437/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/wireproto.py b/mercurial/wireproto.py --- a/mercurial/wireproto.py +++ b/mercurial/wireproto.py @@ -914,11 +914,8 @@ proto.redirect() - try: - r = repo.pushkey(encoding.tolocal(namespace), encoding.tolocal(key), - encoding.tolocal(old), new) or False - except error.Abort: - r = False + r = repo.pushkey(encoding.tolocal(namespace), encoding.tolocal(key), + encoding.tolocal(old), new) or False output = proto.restore()