Description of problem: "mgarepo submit" fails to work properly with subversion upgraded to 1.7.1. This patch fixes the problem: --- /usr/lib/python2.7/site-packages/MgaRepo/svn.py.orig 2011-11-10 20:38:12.188303496 +0200 +++ /usr/lib/python2.7/site-packages/MgaRepo/svn.py 2011-11-10 20:38:15.464303602 +0200 @@ -192,7 +192,7 @@ def info(self, path, **kwargs): cmd = ["info", path + '@' if '@' in path else path] status, output = self._execsvn(local=True, noerror=True, *cmd, **kwargs) - if "Not a versioned resource" not in output: + if (("Not a versioned resource" not in output) and ("svn: warning: W155010" not in output)): return output.splitlines() return None
Created attachment 1058 [details] The patch attached.
Hi, thanks for reporting this bug. Assigned to the package maintainer.
Keywords: (none) => PATCH, TriagedAssignee: bugsquad => boklm
Hi all, any news regarding this bug? It should be fixed for svn to be upgraded. Regards, -- Shlomi Fish
mgarepa 1.10.2 has been submitted to cauldron with this patch. Thanks.
Status: NEW => RESOLVEDResolution: (none) => FIXED