f756cfc
diff --git a/pypy/tool/ansi_print.py b/pypy/tool/ansi_print.py
f756cfc
index 3eff27c..fac4ba2 100644
f756cfc
--- a/pypy/tool/ansi_print.py
f756cfc
+++ b/pypy/tool/ansi_print.py
f756cfc
@@ -25,7 +25,7 @@ class AnsiLog:
f756cfc
         self.kw_to_color = self.KW_TO_COLOR.copy()
f756cfc
         self.kw_to_color.update(kw_to_color)
f756cfc
         self.file = file
f756cfc
-        self.fancy = True
f756cfc
+        self.fancy = False
f756cfc
         self.isatty = getattr(sys.stderr, 'isatty', lambda: False)
f756cfc
         if self.fancy and self.isatty(): 
f756cfc
             self.mandelbrot_driver = Driver()