Mercurial > hg > mercurial-source
diff tests/test-status-color.t @ 21227:75aaae8ad660 stable
color: don't fail on error messages when no curses (issue4237)
The error only occured when Python didn't have curses - such as on Windows and
when Python was built without curses support.
No curses can also be emulated by (re)moving .../lib/python2.7/curses/ from the
Python installation.
It is left as an exercise to figure out exactly what changed in Mercurial that
triggered this error.
author | Mads Kiilerich <madski@unity3d.com> |
---|---|
date | Sat, 03 May 2014 03:29:30 +0200 (2014-05-03) |
parents | 16c643f3a1a5 |
children | 1c4ae0f6a30f |
line wrap: on
line diff
--- a/tests/test-status-color.t +++ b/tests/test-status-color.t @@ -319,4 +319,17 @@ \x1b[0;31;1mU a\x1b[0m (esc) \x1b[0;32;1mR b\x1b[0m (esc) +color coding of error message with current availability of curses + + $ hg unknowncommand > /dev/null + hg: unknown command 'unknowncommand' + [255] + +color coding of error message without curses + + $ echo 'raise ImportError' > curses.py + $ PYTHONPATH=`pwd`:$PYTHONPATH hg unknowncommand > /dev/null + hg: unknown command 'unknowncommand' + [255] + $ cd ..