summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/checksum.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/checksum.py b/pym/portage/checksum.py
index b22e62b61..330d85dfb 100644
--- a/pym/portage/checksum.py
+++ b/pym/portage/checksum.py
@@ -27,7 +27,8 @@ def _generate_hash_function(hashtype, hashobject, origin="unknown"):
@type filename: String
@return: The hash and size of the data
"""
- f = open(_unicode_encode(filename), 'rb')
+ f = open(_unicode_encode(filename,
+ encoding=_fs_encoding, errors='strict'), 'rb')
blocksize = HASHING_BLOCKSIZE
data = f.read(blocksize)
size = 0L