diff -r 6641e941ef1e -r ff1a9aa48cfd app/django/core/management/color.py --- a/app/django/core/management/color.py Tue Oct 14 12:36:55 2008 +0000 +++ b/app/django/core/management/color.py Tue Oct 14 16:00:59 2008 +0000 @@ -11,8 +11,7 @@ Returns True if the running system's terminal supports color, and False otherwise. """ - unsupported_platform = (sys.platform in ('win32', 'Pocket PC') - or sys.platform.startswith('java')) + unsupported_platform = (sys.platform in ('win32', 'Pocket PC')) # isatty is not always implemented, #6223. is_a_tty = hasattr(sys.stdout, 'isatty') and sys.stdout.isatty() if unsupported_platform or not is_a_tty: