[py-svn] r37021 - py/dist/py/path/svn
cfbolz at codespeak.net
cfbolz at codespeak.net
Fri Jan 19 17:48:43 CET 2007
Author: cfbolz
Date: Fri Jan 19 17:48:41 2007
New Revision: 37021
Modified:
py/dist/py/path/svn/wccommand.py
Log:
my svn client has yet another error message
Modified: py/dist/py/path/svn/wccommand.py
==============================================================================
--- py/dist/py/path/svn/wccommand.py (original)
+++ py/dist/py/path/svn/wccommand.py Fri Jan 19 17:48:41 2007
@@ -94,7 +94,8 @@
if strerr.find('file not found') != -1:
raise py.error.ENOENT(self)
if (strerr.find('file exists') != -1 or
- strerr.find('file already exists') != -1):
+ strerr.find('file already exists') != -1 or
+ strerr.find("can't create directory") != -1):
raise py.error.EEXIST(self)
raise
return out
More information about the py-svn
mailing list