From 8d44f667393c163385c56c9cbbba8ffd288c2d99 Mon Sep 17 00:00:00 2001 From: Pierre-Yves David Date: Tue, 4 Apr 2017 16:49:12 +0200 Subject: [PATCH] localrepo: fix deprecation version for 'repo._link' The patch lingered for a while and nobody noticed when it was resubmitted. --- mercurial/localrepo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py index bb938e9fdd..f6c019cf2d 100644 --- 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):