fix a svn-1.6 issue

--HG--
branch : 1.0.x
This commit is contained in:
holger krekel 2009-07-30 21:31:31 +02:00
parent ad34e50b71
commit 2514b8faaf
2 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,9 @@
Changes between 1.0.0b8 and 1.0.0b9
=====================================
* fix svn-1.6 compat issue with py.path.svnwc().versioned()
(thanks Wouter Vanden Hove)
* dist-testing: properly handle test items that get locally
collected but cannot be collected on the remote side - often
due to platform/dependency reasons

View File

@ -454,6 +454,8 @@ recursively. """
except py.process.cmdexec.Error, e:
if e.err.find('is not a working copy')!=-1:
return False
if e.err.lower().find('not a versioned resource') != -1:
return False
raise
else:
return True