summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pym/gentoolkit/equery/which.py')
-rw-r--r--pym/gentoolkit/equery/which.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pym/gentoolkit/equery/which.py b/pym/gentoolkit/equery/which.py
index 0d30a8d..137e52a 100644
--- a/pym/gentoolkit/equery/which.py
+++ b/pym/gentoolkit/equery/which.py
@@ -18,6 +18,8 @@ __docformat__ = 'epytext'
import os
import sys
+if sys.hexversion < 0x3000000:
+ from io import open
from getopt import gnu_getopt, GetoptError
@@ -62,7 +64,8 @@ def print_help(with_description=True):
def print_ebuild(ebuild_path):
"""Output the ebuild to std_out"""
- with open(_unicode_encode(ebuild_path, encoding=_encodings['fs'])) as f:
+ with open(_unicode_encode(ebuild_path, encoding=_encodings['fs']),
+ encoding=_encodings['content']) as f:
lines = f.readlines()
print("\n\n")
print("".join(lines))