# HG changeset patch # User Pierre-Yves David # Date 1491317352 -7200 # Node ID 95a67508fd72f6419be2aa85fd44ad266cd82de2 # Parent 8fa516b264c9444a59e7ffcc7b6e78a9ff088c76 localrepo: fix deprecation version for 'repo._link' The patch lingered for a while and nobody noticed when it was resubmitted. diff -r 8fa516b264c9 -r 95a67508fd72 mercurial/localrepo.py --- 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):