Fixed windows path parsing

The parsing of windows path failed because a undefined variable
was referenced.
This commit is contained in:
Jürg Rast 2020-04-17 22:42:23 +02:00
parent a6e4d808e1
commit 64b6bc88e7
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