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

arigo at codespeak.net arigo at codespeak.net
Tue Jul 5 11:56:36 CEST 2005


Author: arigo
Date: Tue Jul  5 11:56:36 2005
New Revision: 14260

Modified:
   py/dist/py/path/svn/svncommon.py
Log:
Setting the locale before calling 'svn' is still necessary.
Revision 7780 broke this.


Modified: py/dist/py/path/svn/svncommon.py
==============================================================================
--- py/dist/py/path/svn/svncommon.py	(original)
+++ py/dist/py/path/svn/svncommon.py	Tue Jul  5 11:56:36 2005
@@ -251,6 +251,6 @@
         return value
 
 def fixlocale():
-    #if sys.platform != 'win32':
-    #    return 'LC_ALL=C '
+    if sys.platform != 'win32':
+        return 'LC_ALL=C '
     return ''



More information about the pytest-commit mailing list