* svn2svn/ui.py (status): Don't try to write ANSI escape sequences
for color-mode for NT since cmd.exe doesn't support them.
msg = msg.encode('utf-8')
color = kwargs.get('color', None)
bold = kwargs.get('bold', None)
- if color in _colors:
+ if color in _colors and os.name != 'nt':
msg = '%s%s%s' % ("\x1b["+_colors[color]+(";1" if bold else "")+"m", msg, "\x1b[0m")
stream.write(msg)
stream.flush()