This is an automated email from the ASF dual-hosted git repository.

asf-gitbox-commits pushed a commit to branch dw/8605
in repository https://gitbox.apache.org/repos/asf/allura.git

commit 46e90c16aaffd85f83b8afbef8b17dc02564bfdb
Author: Dillon Walls <[email protected]>
AuthorDate: Wed May 13 14:48:21 2026 +0000

    [#8605] Use C.UTF-8 locale instead of en_US.UTF-8 for SVN export
---
 ForgeSVN/forgesvn/model/svn.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ForgeSVN/forgesvn/model/svn.py b/ForgeSVN/forgesvn/model/svn.py
index 278f4bf4b..906cb53a6 100644
--- a/ForgeSVN/forgesvn/model/svn.py
+++ b/ForgeSVN/forgesvn/model/svn.py
@@ -710,7 +710,7 @@ def tarball(self, commit, path=None):
         try:
             # need to set system locale to handle all symbols in filename
             import locale
-            locale.setlocale(locale.LC_ALL, 'en_US.UTF-8')
+            locale.setlocale(locale.LC_ALL, 'C.UTF-8')
             self._svn.export(path,
                              tmpdest,
                              revision=pysvn.Revision(

Reply via email to