[openrtm-commit:01319] r595 - trunk/OpenRTM-aist-Python

openrtm @ openrtm.org openrtm @ openrtm.org
2014年 2月 28日 (金) 00:57:24 JST


Author: ga
Date: 2014-02-28 00:57:24 +0900 (Fri, 28 Feb 2014)
New Revision: 595

Modified:
   trunk/OpenRTM-aist-Python/setup.py
Log:
deleted the character code conversion processing. refs #3035

Modified: trunk/OpenRTM-aist-Python/setup.py
===================================================================
--- trunk/OpenRTM-aist-Python/setup.py	2014-02-27 14:46:33 UTC (rev 594)
+++ trunk/OpenRTM-aist-Python/setup.py	2014-02-27 15:57:24 UTC (rev 595)
@@ -802,16 +802,20 @@
     self.get_file_list()
     if self.manifest_only:
       return
+    """
     # converting character code into Shift-JIS
     import re
     for f in self.filelist.files:
       if not re.match('OpenRTM_aist.*\.py$', f): continue
       convert_file_code(f, "shift_jis", "\r\n", "euc_jp")
+    """
     self.make_distribution()
+    """
     # reverting character code
     for f in self.filelist.files:
       if not re.match('OpenRTM_aist.*\.py$', f): continue
       convert_file_code(f, "euc_jp", "\n", "shift_jis")
+    """
 
 #============================================================
 # install command classes



More information about the openrtm-commit mailing list