diff --git a/python/init.py b/python/init.py index b4b88e2..e091691 100644 --- a/python/init.py +++ b/python/init.py @@ -79,6 +79,8 @@ class MyStdOut: def flush(self): pass + def isatty(self): + return False # Redirect stderr and stdout to the IDA message window sys.stdout = sys.stderr = MyStdOut()