modify (semi-revert) 21728/21729 open=>io.open change, for Windows

svn: r21730
This commit is contained in:
Paul Franklin 2013-03-24 15:48:36 +00:00
parent 4db73f0422
commit b5d75c54d4

View File

@ -1083,7 +1083,9 @@ class PluginRegister(object):
full_filename = os.path.join(dir, filename)
if sys.version_info[0] < 3:
full_filename = full_filename.encode(glocale.getfilesystemencoding())
fd = io.open(full_filename, 'r', encoding = 'utf-8')
fd = io.open(full_filename, 'r')
else:
fd = io.open(full_filename, 'r', encoding = 'utf-8')
stream = fd.read()
fd.close()
if os.path.exists(os.path.join(os.path.dirname(full_filename),