Mercurial > public > mercurial-scm > hg
diff mercurial/localrepo.py @ 16018:ed9f40bc346f stable
phases: fix verify with secret csets
Verify uses repo.cancopy() to detect whether a repo is a plain old
local repo, so it was giving a confusing error message when secret
changesets were present.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Sun, 29 Jan 2012 13:36:10 -0600 |
parents | 0b05e0bfdc1c |
children | 7460f3a1fd6c |
line wrap: on
line diff
--- a/mercurial/localrepo.py Sun Jan 29 12:59:21 2012 -0600 +++ b/mercurial/localrepo.py Sun Jan 29 13:36:10 2012 -0600 @@ -637,10 +637,6 @@ def local(self): return self - def cancopy(self): - return (repo.repository.cancopy(self) - and not self._phaseroots[phases.secret]) - def join(self, f): return os.path.join(self.path, f)