##// END OF EJS Templates
localrepo: refer to checkunresolved by its new name
Augie Fackler -
r30496:a90867a2 default
parent child Browse files
Show More
@@ -28,7 +28,6 b' from . import ('
28 bundle2,
28 bundle2,
29 changegroup,
29 changegroup,
30 changelog,
30 changelog,
31 cmdutil,
32 context,
31 context,
33 dirstate,
32 dirstate,
34 dirstateguard,
33 dirstateguard,
@@ -42,6 +41,7 b' from . import ('
42 manifest,
41 manifest,
43 match as matchmod,
42 match as matchmod,
44 merge as mergemod,
43 merge as mergemod,
44 mergeutil,
45 namespaces,
45 namespaces,
46 obsolete,
46 obsolete,
47 pathutil,
47 pathutil,
@@ -1630,7 +1630,7 b' class localrepository(object):'
1630 raise error.Abort(_("cannot commit merge with missing files"))
1630 raise error.Abort(_("cannot commit merge with missing files"))
1631
1631
1632 ms = mergemod.mergestate.read(self)
1632 ms = mergemod.mergestate.read(self)
1633 cmdutil.checkunresolved(ms)
1633 mergeutil.checkunresolved(ms)
1634
1634
1635 if editor:
1635 if editor:
1636 cctx._text = editor(self, cctx, subs)
1636 cctx._text = editor(self, cctx, subs)
General Comments 0
You need to be logged in to leave comments. Login now