Mercurial > hg
changeset 31819:95a67508fd72
localrepo: fix deprecation version for 'repo._link'
The patch lingered for a while and nobody noticed when it was resubmitted.
author | Pierre-Yves David <pierre-yves.david@ens-lyon.org> |
---|---|
date | Tue, 04 Apr 2017 16:49:12 +0200 |
parents | 8fa516b264c9 |
children | 45761ef1bc93 |
files | mercurial/localrepo.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/localrepo.py Tue Apr 04 16:48:58 2017 +0200 +++ b/mercurial/localrepo.py Tue Apr 04 16:49:12 2017 +0200 @@ -890,7 +890,7 @@ def _link(self, f): self.ui.deprecwarn("use 'repo.wvfs.islink' instead of 'repo._link'", - '4.0') + '4.2') return self.wvfs.islink(f) def _loadfilter(self, filter):