Ticket #6223: 6223.3.diff
File 6223.3.diff, 612 bytes (added by , 17 years ago) |
---|
-
django/core/management/color.py
8 8 9 9 def color_style(): 10 10 """Returns a Style object with the Django color scheme.""" 11 i f (sys.platform == 'win32' or sys.platform == 'Pocket PC'12 or sys.platform.startswith('java') or not sys.stdout.isatty()):11 is_a_tty = hasattr(sys.stdout, 'isatty') and sys.stdout.isatty() 12 if not is_a_tty: 13 13 return no_style() 14 14 class dummy: pass 15 15 style = dummy()