mercurial/commands.py
changeset 26993 d240ae897ba6
parent 26976 c48fee950ce4
child 26994 676c3838d217
--- a/mercurial/commands.py	Tue Nov 17 13:56:10 2015 -0800
+++ b/mercurial/commands.py	Tue Nov 17 13:56:46 2015 -0800
@@ -5589,7 +5589,7 @@
 
     if show:
         fm = ui.formatter('resolve', opts)
-        ms = mergemod.mergestate(repo)
+        ms = mergemod.mergestate.read(repo)
         m = scmutil.match(repo[None], pats, opts)
         for f in ms:
             if not m(f):
@@ -5604,7 +5604,7 @@
 
     wlock = repo.wlock()
     try:
-        ms = mergemod.mergestate(repo)
+        ms = mergemod.mergestate.read(repo)
 
         if not (ms.active() or repo.dirstate.p2() != nullid):
             raise error.Abort(