Mercurial > hg
changeset 5432:bfbd9b954315
mq: clarify queue top message
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Tue, 09 Oct 2007 17:22:38 -0500 |
parents | a7c832abd29c |
children | f9c2917a9f7a |
files | hgext/mq.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/mq.py Mon Oct 08 22:45:48 2007 -0700 +++ b/hgext/mq.py Tue Oct 09 17:22:38 2007 -0500 @@ -587,7 +587,7 @@ top = revlog.bin(self.applied[-1].rev) pp = repo.dirstate.parents() if top not in pp: - raise util.Abort(_("queue top not at same revision as working directory")) + raise util.Abort(_("working directory revision is not qtip")) return top return None def check_localchanges(self, repo, force=False, refresh=True):