From 0734910cf89cb6ea880c032ddc1726a153c644e2 Mon Sep 17 00:00:00 2001 From: Pankaj Pandey Date: Fri, 27 Apr 2018 13:20:24 +0530 Subject: [PATCH] Fix help message in vmprofshow for prune options --- vmprof/show.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vmprof/show.py b/vmprof/show.py index da84995c..32393374 100644 --- a/vmprof/show.py +++ b/vmprof/show.py @@ -232,13 +232,13 @@ def main(): '--prune_percent', type=float, default=0, - help="The indention per level within the call graph.") + help="Prune output of a profile stats node below specified CPU samples.") parser.add_argument( '--prune_level', type=int, default=None, - help='Prune output of a profile stats node when CPU.') + help='Prune output of a profile stats node below specified depth.') parser.add_argument( '--indent',