Merge pull request #5119 from jrast/win-path-fix

Fixed windows path parsing
This commit is contained in:
TW 2020-04-18 01:09:22 +02:00 committed by GitHub
commit ba154d1104
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -418,7 +418,7 @@ class Location:
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