summaryrefslogtreecommitdiff
path: root/src/fifo.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/fifo.py')
-rw-r--r--src/fifo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fifo.py b/src/fifo.py
index 8306e24b..7db4b160 100644
--- a/src/fifo.py
+++ b/src/fifo.py
@@ -32,7 +32,7 @@ class OpenTrick(threading.Thread):
self.path = path
def run(self):
- open(self.path, 'r').close()
+ open(self.path, 'r', encoding='utf-8').close()
class Fifo(object):
@@ -49,7 +49,7 @@ class Fifo(object):
self.trick = OpenTrick(path)
# that thread will wait until we open it for writing
self.trick.start()
- self.fd = open(path, mode)
+ self.fd = open(path, mode, encoding='utf-8')
def write(self, data):
"""