# HG changeset patch # User Boris Feld # Date 1536357067 14400 # Node ID e9706686451b8ba40ccb2d4614bba3f2a893b86b # Parent ec0a2601bc760799888db003072ed333404567aa contrib: fix catapipe output argument documentation Differential Revision: https://phab.mercurial-scm.org/D4515 diff -r ec0a2601bc76 -r e9706686451b contrib/catapipe.py --- 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()