aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2011-11-24 14:17:31 +0000
committerNicolas Vigier <boklm@mageia.org>2011-11-24 14:17:31 +0000
commitc470f627627c67143da0e85c1da318075d880b6a (patch)
tree9c0b902d7344955c67a0d7d92e1459ca52db9ede
parente12261e3ef17f20bff3160b77c755577122ca6eb (diff)
downloadmgarepo-c470f627627c67143da0e85c1da318075d880b6a.tar
mgarepo-c470f627627c67143da0e85c1da318075d880b6a.tar.gz
mgarepo-c470f627627c67143da0e85c1da318075d880b6a.tar.bz2
mgarepo-c470f627627c67143da0e85c1da318075d880b6a.tar.xz
mgarepo-c470f627627c67143da0e85c1da318075d880b6a.zip
fix svn info with subversion 1.7.1 (from Shlomi Fish #3346)
-rw-r--r--MgaRepo/svn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/MgaRepo/svn.py b/MgaRepo/svn.py
index 655388c..a3424ad 100644
--- a/MgaRepo/svn.py
+++ b/MgaRepo/svn.py
@@ -192,7 +192,7 @@ class SVN:
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