Mercurial > hg
changeset 39513:e9706686451b
contrib: fix catapipe output argument documentation
Differential Revision: https://phab.mercurial-scm.org/D4515
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Fri, 07 Sep 2018 17:51:07 -0400 |
parents | ec0a2601bc76 |
children | b29ec19748a7 |
files | contrib/catapipe.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/catapipe.py Thu Sep 06 16:59:25 2018 -0400 +++ b/contrib/catapipe.py Fri Sep 07 17:51:07 2018 -0400 @@ -45,7 +45,8 @@ parser.add_argument('pipe', type=str, nargs=1, help='Path of named pipe to create and listen on.') parser.add_argument('output', default='trace.json', type=str, nargs='?', - help='Path of named pipe to create and listen on.') + help='Path of json file to create where the traces ' + 'will be stored.') parser.add_argument('--debug', default=False, action='store_true', help='Print useful debug messages') args = parser.parse_args()