From c34610e60d7a8cafcd64de4451355faa1be2c120 Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Sun, 24 Mar 2013 17:46:16 +0000 Subject: [PATCH] revert 21728/21729 open=>io.open change, for Windows svn: r21733 --- gramps/gen/plug/_pluginreg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gen/plug/_pluginreg.py b/gramps/gen/plug/_pluginreg.py index d1e73c4a7..16d99bf50 100644 --- a/gramps/gen/plug/_pluginreg.py +++ b/gramps/gen/plug/_pluginreg.py @@ -1083,7 +1083,7 @@ 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') + fd = open(full_filename, 'r') else: fd = io.open(full_filename, 'r', encoding = 'utf-8') stream = fd.read()