From fee6105d465c00a303a6dfb713fd5d008d6be79f Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 23 Aug 2009 07:40:57 +0000 Subject: Bug #282306 - Inside LinkageMap._ObjectKey._generate_object_key(), fall back to utf_8 encoding if a path cannot be encoded under the user's chosen encoding. This should complete the fix for the traceback shown in bug #282115, comment #6. svn path=/main/trunk/; revision=14131 --- pym/portage/dbapi/vartree.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'pym') diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index e6ed16498..5a2c3d091 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -249,6 +249,21 @@ class LinkageMap(object): os = _os_merge + try: + _unicode_encode(obj, + encoding=_encodings['merge'], errors='strict') + except UnicodeEncodeError: + # The package appears to have been merged with a + # different value of sys.getfilesystemencoding(), + # so fall back to utf_8 if appropriate. + try: + _unicode_encode(obj, + encoding=_encodings['fs'], errors='strict') + except UnicodeEncodeError: + pass + else: + os = portage.os + abs_path = os.path.join(root, obj.lstrip(os.sep)) try: object_stat = os.stat(abs_path) -- cgit v1.2.3-1-g7c22