# HG changeset patch
# User Martin von Zweigbergk <martinv...@google.com>
# Date 1448990394 28800
#      Tue Dec 01 09:19:54 2015 -0800
# Node ID eca76edfc5574a598c0e347b22de7d236900312a
# Parent  30ac13304e5d0e8b4e68455f18adc058e219db7f
shelve: don't reimplement mergestate.unresolved()

diff --git a/hgext/shelve.py b/hgext/shelve.py
--- a/hgext/shelve.py
+++ b/hgext/shelve.py
@@ -659,7 +659,7 @@
     with repo.lock():
         checkparents(repo, state)
         ms = merge.mergestate.read(repo)
-        if [f for f in ms if ms[f] == 'u']:
+        if list(ms.unresolved()):
             raise error.Abort(
                 _("unresolved conflicts, can't continue"),
                 hint=_("see 'hg resolve', then 'hg unshelve --continue'"))
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to