From: Zac Medico Date: Fri, 7 Aug 2009 21:03:11 +0000 (-0000) Subject: Open repo_name in text mode (unicode). X-Git-Tag: v2.2_rc37~19 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2b188ad9574722d8102df3e0695002a508ee0c40;p=portage.git Open repo_name in text mode (unicode). svn path=/main/trunk/; revision=13947 --- 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