mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-22 06:01:54 +00:00
Merge pull request #5119 from jrast/win-path-fix
Fixed windows path parsing
This commit is contained in:
commit
ba154d1104
1 changed files with 1 additions and 1 deletions
|
@ -418,7 +418,7 @@ def normpath_special(p):
|
|||
m = self.win_file_re.match(text)
|
||||
if m:
|
||||
self.proto = 'file'
|
||||
self.path = path
|
||||
self.path = m.group('path')
|
||||
self.archive = m.group('archive')
|
||||
return True
|
||||
|
||||
|
|
Loading…
Reference in a new issue