From 2b188ad9574722d8102df3e0695002a508ee0c40 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 7 Aug 2009 21:03:11 +0000 Subject: Open repo_name in text mode (unicode). svn path=/main/trunk/; revision=13947 --- pym/portage/dbapi/porttree.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pym') diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py index 9f427a148..9f36af569 100644 --- a/pym/portage/dbapi/porttree.py +++ b/pym/portage/dbapi/porttree.py @@ -167,7 +167,8 @@ class portdbapi(dbapi): continue repo_name_path = os.path.join(path, REPO_NAME_LOC) try: - repo_name = open(repo_name_path, 'r').readline().strip() + repo_name = codecs.open(repo_name_path, mode='r', + encoding='utf_8', errors='replace').readline().strip() except EnvironmentError: # warn about missing repo_name at some other time, since we # don't want to see a warning every time the portage module is -- cgit v1.2.3-1-g7c22