# HG changeset patch # User Pierre-Yves David # Date 2017-04-04 14:49:12 # 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 --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -890,7 +890,7 @@ class localrepository(object): 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):