comparison hgsubversion/svnmeta.py @ 1503:180e0d5fba2e

join: remove uses of repo.join/wjoin Upstream Mercurial has dropped these functions as of 4.3. Let's switch to the appropriate repo.[w]vfs.join functions.
author Durham Goode <durham@fb.com>
date Tue, 09 May 2017 15:20:16 -0700
parents 797c7b58a735
children d03995e69785
comparison
equal deleted inserted replaced
1502:fb91566d849c 1503:180e0d5fba2e
24 It is needed for stripping paths off in certain cases. 24 It is needed for stripping paths off in certain cases.
25 """ 25 """
26 # simple and public variables 26 # simple and public variables
27 self.ui = repo.ui 27 self.ui = repo.ui
28 self.repo = repo 28 self.repo = repo
29 self.path = os.path.normpath(repo.join('..')) 29 self.path = os.path.normpath(repo.vfs.join('..'))
30 self.lastdate = '1970-01-01 00:00:00 -0000' 30 self.lastdate = '1970-01-01 00:00:00 -0000'
31 self.addedtags = {} 31 self.addedtags = {}
32 self.deletedtags = {} 32 self.deletedtags = {}
33 33
34 # private variables 34 # private variables