Commit dcee30d3 authored by Sasha Goldshtein's avatar Sasha Goldshtein

Fixed long arg name from stack_depth to stack-depth

parent d2241f4f
...@@ -190,7 +190,7 @@ parser.add_argument("-c", "--command", ...@@ -190,7 +190,7 @@ parser.add_argument("-c", "--command",
help="execute and trace the specified command") help="execute and trace the specified command")
parser.add_argument("-s", "--sample-rate", default=1, type=int, parser.add_argument("-s", "--sample-rate", default=1, type=int,
help="sample every N-th allocation to decrease the overhead") help="sample every N-th allocation to decrease the overhead")
parser.add_argument("-d", "--stack_depth", default=10, type=int, parser.add_argument("-d", "--stack-depth", default=10, type=int,
help="maximum stack depth to capture") help="maximum stack depth to capture")
args = parser.parse_args() args = parser.parse_args()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment