##// END OF EJS Templates
transplant: directly use repo.vfs.join...
Pierre-Yves David -
r31336:0199686a default
parent child Browse files
Show More
@@ -103,7 +103,7 b' class transplants(object):'
103 103 class transplanter(object):
104 104 def __init__(self, ui, repo, opts):
105 105 self.ui = ui
106 self.path = repo.join('transplant')
106 self.path = repo.vfs.join('transplant')
107 107 self.opener = vfsmod.vfs(self.path)
108 108 self.transplants = transplants(self.path, 'transplants',
109 109 opener=self.opener)
General Comments 0
You need to be logged in to leave comments. Login now