remove new found flags when do a automatic scan and "clear before scan" was
[enigma2.git] / lib / python / Tools / RedirectOutput.py
1 import sys
2 from enigma import ePythonOutput
3
4 class EnigmaOutput:
5         def write(self, data):
6                 if type(data) is unicode:
7                         data = data.encode("UTF-8")
8                 ePythonOutput(data)
9
10         def flush():
11                 pass
12
13 sys.stdout = sys.stderr = EnigmaOutput()