equal
deleted
inserted
replaced
391 |
391 |
392 color coding of error message with current availability of curses |
392 color coding of error message with current availability of curses |
393 |
393 |
394 $ hg unknowncommand > /dev/null |
394 $ hg unknowncommand > /dev/null |
395 hg: unknown command 'unknowncommand' |
395 hg: unknown command 'unknowncommand' |
|
396 (use 'hg help' for a list of commands) |
396 [255] |
397 [255] |
397 |
398 |
398 color coding of error message without curses |
399 color coding of error message without curses |
399 |
400 |
400 $ echo 'raise ImportError' > curses.py |
401 $ echo 'raise ImportError' > curses.py |
401 $ PYTHONPATH=`pwd`:$PYTHONPATH hg unknowncommand > /dev/null |
402 $ PYTHONPATH=`pwd`:$PYTHONPATH hg unknowncommand > /dev/null |
402 hg: unknown command 'unknowncommand' |
403 hg: unknown command 'unknowncommand' |
|
404 (use 'hg help' for a list of commands) |
403 [255] |
405 [255] |
404 |
406 |
405 $ cd .. |
407 $ cd .. |