diff options
author | Nicolas Vigier <boklm@mageia.org> | 2011-11-24 14:17:31 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2011-11-24 14:17:31 +0000 |
commit | c470f627627c67143da0e85c1da318075d880b6a (patch) | |
tree | 9c0b902d7344955c67a0d7d92e1459ca52db9ede /MgaRepo | |
parent | e12261e3ef17f20bff3160b77c755577122ca6eb (diff) | |
download | mgarepo-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)
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 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 |