Skip to content

Commit

Permalink
fix -h output for --sort option
Browse files Browse the repository at this point in the history
This fixes a regression from c2b371d where the author forgot to update the help output.
  • Loading branch information
felixge authored and yonghong-song committed Dec 12, 2019
1 parent 2283996 commit 3106a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/filetop.py
Expand Up @@ -40,7 +40,7 @@
help="maximum rows to print, default 20")
parser.add_argument("-s", "--sort", default="all",
choices=["all", "reads", "writes", "rbytes", "wbytes"],
help="sort column, default rbytes")
help="sort column, default all")
parser.add_argument("-p", "--pid", type=int, metavar="PID", dest="tgid",
help="trace this PID only")
parser.add_argument("interval", nargs="?", default=1,
Expand Down

0 comments on commit 3106a82

Please sign in to comment.