Mercurial > hg-stable
changeset 28267:5408e532e50a
merge: fix error message
Obvious copy-and-paste error
author | Simon Farnsworth <simonfar@fb.com> |
---|---|
date | Fri, 26 Feb 2016 19:13:10 +0000 |
parents | de8b09482fb7 |
children | 3643b66d7f71 |
files | mercurial/merge.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/merge.py Wed Feb 24 23:00:33 2016 +0900 +++ b/mercurial/merge.py Fri Feb 26 19:13:10 2016 +0000 @@ -311,7 +311,7 @@ @util.propertycache def otherctx(self): if self._other is None: - raise RuntimeError("localctx accessed but self._local isn't set") + raise RuntimeError("otherctx accessed but self._other isn't set") return self._repo[self._other] def active(self):