Ticket #6223: 6223.2.diff

File 6223.2.diff, 583 bytes (added by Gary Wilson, 17 years ago)
  • django/core/management/color.py

     
    88
    99def color_style():
    1010    """Returns a Style object with the Django color scheme."""
    11     if (sys.platform == 'win32' or sys.platform == 'Pocket PC'
    12         or sys.platform.startswith('java') or not sys.stdout.isatty()):
     11    if hasattr(sys.stdout, 'isatty') and sys.stdout.isatty():
    1312        return no_style()
    1413    class dummy: pass
    1514    style = dummy()
Back to Top