# HG changeset patch # User Siddharth Agarwal # Date 1447797406 28800 # Node ID d240ae897ba6f063ff6a52209bcbddb1b4c08d96 # Parent b3b5ed56028372364820b125c7d4eb3a3721db3a commands.resolve: switch to mergestate.read() See previous patches for why we're doing this. diff -r b3b5ed560283 -r d240ae897ba6 mercurial/commands.py --- 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(