summaryrefslogtreecommitdiff
path: root/src/common.py
diff options
context:
space:
mode:
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'):