[py-svn] r24745 - py/dist/py/path/svn

briandorsey at codespeak.net briandorsey at codespeak.net
Tue Mar 21 23:40:09 CET 2006


Author: briandorsey
Date: Tue Mar 21 23:40:09 2006
New Revision: 24745

Modified:
   py/dist/py/path/svn/wccommand.py
Log:
Reverting my previous mistaken checkin. Apologies!


Modified: py/dist/py/path/svn/wccommand.py
==============================================================================
--- py/dist/py/path/svn/wccommand.py	(original)
+++ py/dist/py/path/svn/wccommand.py	Tue Mar 21 23:40:09 2006
@@ -14,7 +14,7 @@
 from py.__.path.svn import cache
 from py.__.path.svn import svncommon
 
-DEBUG = 1
+DEBUG = 0
 
 class SvnWCCommandPath(common.FSPathBase):
     sep = os.sep
@@ -81,7 +81,7 @@
             if strerr.find('file not found') != -1: 
                 raise py.error.ENOENT(self) 
             if (strerr.find('file exists') != -1 or 
-                                strerr.find('already exists') != -1):
+                                strerr.find('file already exists') != -1):
                 raise py.error.EEXIST(self)
             raise
         return out



More information about the pytest-commit mailing list