aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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