# HG changeset patch # User Matt Mackall # Date 1192081600 18000 # Node ID 58496354773f040d5453353669590815f5614a71 # Parent be015f9b740521efa67d72fb0f798188a9f37a73# Parent a1916700125115641e47bd67a8b75d8dfd390730 Merge with crew Those crew folks are getting lazy about pulling from upstream before committing. diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -587,7 +587,7 @@ class queue: 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): diff --git a/mercurial/merge.py b/mercurial/merge.py