mercurial/commands.py
changeset 21266 19d6fec60b81
parent 21265 232de244ab6f
child 21267 e4f451c8c05c
--- a/mercurial/commands.py	Fri Apr 18 18:56:26 2014 -0700
+++ b/mercurial/commands.py	Fri Apr 18 22:19:25 2014 -0700
@@ -4977,6 +4977,13 @@
     if not didwork and pats:
         ui.warn(_("arguments do not match paths that need resolved\n"))
 
+    # Nudge users into finishing an unfinished operation. We don't print
+    # this with the list/show operation because we want list/show to remain
+    # machine readable.
+    if not list(ms.unresolved()) and not show:
+        ui.write(_('no unresolved files; '))
+        ui.write(_('you may continue your unfinished operation\n'))
+
     return ret
 
 @command('revert',