From f1b5dae1fbb0b325a42b7ad169a9d6341f76d039 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Sun, 27 Feb 2011 12:52:27 +0100 Subject: [PATCH] fix help string --- _pytest/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/terminal.py b/_pytest/terminal.py index 0b0ab1ee2..2172ce6a5 100644 --- a/_pytest/terminal.py +++ b/_pytest/terminal.py @@ -25,7 +25,7 @@ def pytest_addoption(parser): group._addoption('--tb', metavar="style", action="store", dest="tbstyle", default='long', type="choice", choices=['long', 'short', 'no', 'line', 'native'], - help="traceback print mode (long/short/line/no).") + help="traceback print mode (long/short/line/native/no).") group._addoption('--fulltrace', action="store_true", dest="fulltrace", default=False, help="don't cut any tracebacks (default is to cut).")