# HG changeset patch # User Matt Mackall # Date 2013-07-25 05:00:47 # Node ID ee1af0f33d0ed9b31ff5f6ae9c9cca3fd3434795 # Parent 7c0bb2b75aa849dc2a581ffca45ad31d872769c0 mq: add checkunfinished support (issue3955) diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -976,6 +976,7 @@ class queue(object): raise util.Abort(_("local changes found")) def checklocalchanges(self, repo, force=False, refresh=True): + cmdutil.checkunfinished(repo) m, a, r, d = repo.status()[:4] if (m or a or r or d) and not force: self.localchangesfound(refresh)