From 916ae4c7dc058ecf05953607986eb0f6ad44856a Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Tue, 17 May 2011 08:31:34 +0000 Subject: status only return first column and filename (bug #349) --- MgaRepo/svn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- cgit v1.2.1