From 868a26a0ad99ddb86caf09005fc5b13aa22d1525 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 20 Sep 2020 15:07:40 +0200 Subject: [PATCH] Add fix from #257 --- py/_path/svnwc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/_path/svnwc.py b/py/_path/svnwc.py index 3138dd85..b5b9d8d5 100644 --- a/py/_path/svnwc.py +++ b/py/_path/svnwc.py @@ -396,7 +396,7 @@ def makecmdoptions(self): def __str__(self): return "" %(self.username,) -rex_blame = re.compile(r'\s*(\d+)\s*(\S+) (.*)') +rex_blame = re.compile(r'\s*(\d+)\s+(\S+) (.*)') class SvnWCCommandPath(common.PathBase): """ path implementation offering access/modification to svn working copies.