Fixed #8100: Jython, apparently, is now a TTY.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8239 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
176fabcc6f
commit
5fb9599086
|
@ -11,8 +11,7 @@ def supports_color():
|
|||
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:
|
||||
|
|
Loading…
Reference in New Issue