Adding UTF-8 decoding back

master
Miro Hrončok 2013-01-23 16:55:38 +01:00
parent f942c1a007
commit ee386e0091
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class Tee(object):
self.target(data)
except:
pass
self.stdout.write(data)
self.stdout.write(data.encode("utf-8"))
def flush(self):
self.stdout.flush()