Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 2778:fdc232d8a193
Move repo.verify
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 07 Aug 2006 16:27:09 -0500 |
parents | 557ea210fd9f |
children | 987c31e2a08c |
line wrap: on
line diff
--- 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