fix : AttributeError in Python3
@@ -1161,7 +1161,7 @@ class UnicodeStreamFilter:
def write(self, s):
if type(s) == str:
s = s.decode('utf-8')
s = s.encode().decode('utf-8')
s = s.encode(self.encode_to, self.errors).decode(self.encode_to)
self.target.write(s)
The note is not visible to the blocked user.