diff -r 3bd6d27cb81c -r 0b1b029b4de3 mercurial/commands.py --- a/mercurial/commands.py Tue Nov 08 10:36:23 2005 -0800 +++ b/mercurial/commands.py Tue Nov 08 14:22:03 2005 -0800 @@ -1732,7 +1732,9 @@ This command tries to fix the repository status after an interrupted operation. It should only be necessary when Mercurial suggests it. """ - repo.recover() + if repo.recover(): + return repo.verify() + return False def remove(ui, repo, pat, *pats, **opts): """remove the specified files on the next commit