$OpenBSD: patch-Examples_Client_svn_cmd_py,v 1.3 2016/06/14 08:39:23 czarkoff Exp $

LC_ALL only works for single-byte locales on OpenBSD.

--- Examples/Client/svn_cmd.py.orig	Wed Jun  1 02:45:00 2016
+++ Examples/Client/svn_cmd.py	Wed Jun  1 02:45:52 2016
@@ -86,7 +86,7 @@ def initLocale():
             locale.setlocale( locale.LC_ALL, '%s.%s' % (language_code, encoding) )
         except locale.Error:
             # force a locale that will work
-            locale.setlocale( locale.LC_ALL, 'en_GB.UTF-8' )
+            locale.setlocale( locale.LC_ALL, 'C' )
 
 def fmtDateTime( t ):
     return time.strftime( '%d-%b-%Y %H:%M:%S', time.localtime( t ) )
