From 64b6bc88e7cbdfe7acd7067a2109cec0c87f8185 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Rast?= Date: Fri, 17 Apr 2020 22:42:23 +0200 Subject: [PATCH] Fixed windows path parsing The parsing of windows path failed because a undefined variable was referenced. --- src/borg/helpers/parseformat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/helpers/parseformat.py b/src/borg/helpers/parseformat.py index c8878002f..cea722ee7 100644 --- a/src/borg/helpers/parseformat.py +++ b/src/borg/helpers/parseformat.py @@ -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