From fc92746b0ede540e2f0ba3ac86c114b4f0e24777 Mon Sep 17 00:00:00 2001 From: rnv Date: Fri, 19 Jan 2018 15:59:00 +0300 Subject: [PATCH] Implement unicode support in SALOME: first attempt --- bin/ORBConfigFile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ORBConfigFile.py b/bin/ORBConfigFile.py index 0769cd6c1..aaf0c31c6 100644 --- a/bin/ORBConfigFile.py +++ b/bin/ORBConfigFile.py @@ -64,7 +64,7 @@ def writeORBConfigFile(path, host, port, kwargs={}): orbdata.append("%sgiopMaxMsgSize = %s # 2 GBytes"%(prefix,GIOP_MaxMsgSize)) orbdata.append("%straceLevel = 0 # critical errors only"%(prefix)) orbdata.append("%smaxGIOPConnectionPerServer = 500 # to allow containers parallel launch"%(prefix)) - orbdata.append("") + orbdata.append("nativeCharCodeSet = UTF-8") with open(omniorb_config, "w") as f: f.write("\n".join(orbdata)) -- 2.39.2