diff options
Diffstat (limited to 'MgaRepo')
-rw-r--r-- | MgaRepo/svn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MgaRepo/svn.py b/MgaRepo/svn.py index 7302612..655388c 100644 --- a/MgaRepo/svn.py +++ b/MgaRepo/svn.py @@ -221,7 +221,7 @@ class SVN: cmd.append("--quiet") status, output = self._execsvn(*cmd, **kwargs) if status == 0: - return [x.split() for x in output.splitlines()] + return [(x[0], x[8:]) for x in output.splitlines()] return None def cleanup(self, path, **kwargs): |