1) If I disable Broadcaster plugin and then enable again, I get an error message and the plugin stops working
(not to say always, but it is very often).
2) I have a Czech Windows, and if there Broadcaster plugin has perform the line number 117,
this results in UnicodeDecodeError (and the original error message is not printed).
I found the solution to both problems:
1) Instead of
Code: Select all
def handle_write(self):
pass
Code: Select all
def writable(self):
return False # we don't have anything to send !Code: Select all
from locale import getdefaultlocale as localeEncodingCode: Select all
self.Exception(exc[1].decode(localeEncoding()[1]))It is very unpleasant. I was forced to do first unification (I use the Space), and then I could use my editor.
Pako
