[py-svn] r38068 - py/trunk/py/path/svn

guido at codespeak.net guido at codespeak.net
Wed Feb 7 16:15:03 CET 2007


Author: guido
Date: Wed Feb  7 16:15:01 2007
New Revision: 38068

Modified:
   py/trunk/py/path/svn/wccommand.py
Log:
Grmbl, the failing svn tests turned out to be my fault: copy/paste bug. (when
copying the comment, I must have copied along some lines of code... ):


Modified: py/trunk/py/path/svn/wccommand.py
==============================================================================
--- py/trunk/py/path/svn/wccommand.py	(original)
+++ py/trunk/py/path/svn/wccommand.py	Wed Feb  7 16:15:01 2007
@@ -164,9 +164,6 @@
 
     def mkdir(self, *args):
         """ create & return the directory joined with args. """
-        p = self.join(*args)
-        self._callex(os.mkdir, str(p))
-        return p
         if args:
             return self.join(*args).mkdir()
         else:



More information about the pytest-commit mailing list