summaryrefslogtreecommitdiff
path: root/src/common.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-09-13 09:48:35 +0200
committermathieui <mathieui@mathieui.net>2012-09-13 09:50:48 +0200
commit0bd55a27f2f14dd434c828f4a061f366b39dda92 (patch)
tree3fc157c7ae71c0c100fa201ab2ef96bdf7411097 /src/common.py
parentc2828cdd29749609b4e16d2d461ac6b39c822573 (diff)
downloadpoezio-0bd55a27f2f14dd434c828f4a061f366b39dda92.tar.gz
poezio-0bd55a27f2f14dd434c828f4a061f366b39dda92.tar.bz2
poezio-0bd55a27f2f14dd434c828f4a061f366b39dda92.tar.xz
poezio-0bd55a27f2f14dd434c828f4a061f366b39dda92.zip
Fix TBs when the system is not in utf-8 by default
(force every file opening to be with the utf-8 encoding)
Diffstat (limited to 'src/common.py')
-rw-r--r--src/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.py b/src/common.py
index 46306cdb..3b80fa34 100644
--- a/src/common.py
+++ b/src/common.py
@@ -123,7 +123,7 @@ def get_os_info():
# yes, then run it and get the first line of output.
text = get_output_of_command(path_to_file)[0]
else:
- fdes = open(path_to_file)
+ fdes = open(path_to_file, encoding='utf-8')
text = fdes.readline().strip() # get only first line
fdes.close()
if path_to_file.endswith('version'):