# HG changeset patch # User Pierre-Yves David # Date 2017-03-09 00:51:36 # Node ID ab45421285d0498d69d5493a8e7d7b41da997d4a # Parent e59960ea8dcc30951861967ad4e56d634e607420 eol: directly use repo.vfs.join The 'repo.join' method is about to be deprecated. diff --git a/hgext/eol.py b/hgext/eol.py --- a/hgext/eol.py +++ b/hgext/eol.py @@ -314,7 +314,7 @@ def reposetup(ui, repo): oldeol = None try: - cachemtime = os.path.getmtime(self.join("eol.cache")) + cachemtime = os.path.getmtime(self.vfs.join("eol.cache")) except OSError: cachemtime = 0 else: