Changeset 2845
- Timestamp:
- 05/04/06 23:08:14 (2 years ago)
- Files:
-
- django/trunk/django/core/management.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/management.py
r2842 r2845 46 46 style = dummy() 47 47 48 # Disable terminal coloring if somebody's piping the output.49 if (not sys.stdout.isatty()) or (sys.platform == 'win32'):48 # Disable terminal coloring on Windows or if somebody's piping the output. 49 if sys.platform == 'win32' or not sys.stdout.isatty(): 50 50 disable_termcolors() 51 51
