diff -r 81d7db1aa0fb -r fdc232d8a193 mercurial/commands.py --- a/mercurial/commands.py Thu Aug 03 21:24:19 2006 -0500 +++ b/mercurial/commands.py Mon Aug 07 16:27:09 2006 -0500 @@ -2325,7 +2325,7 @@ operation. It should only be necessary when Mercurial suggests it. """ if repo.recover(): - return repo.verify() + return hg.verify(repo) return 1 def remove(ui, repo, *pats, **opts): @@ -2879,7 +2879,7 @@ the changelog, manifest, and tracked files, as well as the integrity of their crosslinks and indices. """ - return repo.verify() + return hg.verify(repo) # Command options and aliases are listed here, alphabetically