Show More
@@ -261,6 +261,13 b' class abstractvfs(object):' | |||
|
261 | 261 | def islink(self, path=None): |
|
262 | 262 | return os.path.islink(self.join(path)) |
|
263 | 263 | |
|
264 | def reljoin(self, *paths): | |
|
265 | """join various elements of a path together (as os.path.join would do) | |
|
266 | ||
|
267 | The vfs base is not injected so that path stay relative. This exists | |
|
268 | to allow handling of strange encoding if needed.""" | |
|
269 | return os.path.join(*paths) | |
|
270 | ||
|
264 | 271 | def lexists(self, path=None): |
|
265 | 272 | return os.path.lexists(self.join(path)) |
|
266 | 273 |
@@ -200,8 +200,8 b' class transaction(object):' | |||
|
200 | 200 | return |
|
201 | 201 | dirname, filename = os.path.split(file) |
|
202 | 202 | backupfilename = "%s.backup.%s" % (self.journal, filename) |
|
203 | backupfile = os.path.join(dirname, backupfilename) | |
|
204 | 203 | vfs = self._vfsmap[location] |
|
204 | backupfile = vfs.reljoin(dirname, backupfilename) | |
|
205 | 205 | if vfs.exists(file): |
|
206 | 206 | filepath = vfs.join(file) |
|
207 | 207 | backuppath = vfs.join(backupfile) |
General Comments 0
You need to be logged in to leave comments.
Login now