app/django/core/management/color.py
changeset 323 ff1a9aa48cfd
parent 54 03e267d67478
--- 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: