From 286279f14a126272fc356cb5ca463292255cf274 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Thu, 23 May 2013 00:53:45 +0200 Subject: [PATCH] Show default value for --record --- sith.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sith.py b/sith.py index df53c623..dbde8a84 100755 --- a/sith.py +++ b/sith.py @@ -269,7 +269,7 @@ class AttackApp(object): description=__doc__) parser.add_argument( '--record', '-R', default='record.json', - help='Exceptions are recorded in here.') + help='Exceptions are recorded in here (default: %(default)s).') parser.add_argument( '--pdb', dest='debugger', const='pdb', action='store_const', help="Launch pdb when error is raised.")