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

hpk at codespeak.net hpk at codespeak.net
Sat Jan 29 13:03:38 CET 2005


Author: hpk
Date: Sat Jan 29 13:03:38 2005
New Revision: 8698

Modified:
   py/dist/py/path/svn/wccommand.py
Log:
experiment fix to correctly pass on arguments
to the underlying system (this really needs 
to be done more systematically and also tested) 



Modified: py/dist/py/path/svn/wccommand.py
==============================================================================
--- py/dist/py/path/svn/wccommand.py	(original)
+++ py/dist/py/path/svn/wccommand.py	Sat Jan 29 13:03:38 2005
@@ -57,7 +57,7 @@
         l = ['svn %s' % cmd]
         args = map(lambda x: '"%s"' % x, args)
         l.extend(args)
-        l.append(repr(self.strpath))
+        l.append("%s" % self.strpath)
         # try fixing the locale because we can't otherwise parse
         string = svncommon.fixlocale() + " ".join(l)
         if DEBUG:



More information about the pytest-commit mailing list