From 3106a82f2cbce9be7c31da44cd173c2ac88c7e21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Geisend=C3=B6rfer?= Date: Thu, 12 Dec 2019 16:41:09 +0800 Subject: [PATCH] fix -h output for --sort option This fixes a regression from c2b371d56b8bbaf9c7d01b88830193ecd1ee4e12 where the author forgot to update the help output. --- tools/filetop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/filetop.py b/tools/filetop.py index 552367a98fc..dbe7a7da41b 100755 --- a/tools/filetop.py +++ b/tools/filetop.py @@ -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,