From 4c452887906858c3dbb69d000c5a930752d945a5 Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Wed, 26 Sep 2012 09:59:55 -0500 Subject: [PATCH] cqlsh: alphabetize help Patch by Aleksey Yeschenko, reviewed by brandonwilliams for CASSANDRA-4034 --- bin/cqlsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cqlsh b/bin/cqlsh index 4e93db7ce9..f984618d41 100755 --- a/bin/cqlsh +++ b/bin/cqlsh @@ -1884,7 +1884,7 @@ class Shell(cmd.Cmd): return names def columnize(self, slist, *a, **kw): - return cmd.Cmd.columnize(self, [u.upper() for u in slist], *a, **kw) + return cmd.Cmd.columnize(self, sorted([u.upper() for u in slist]), *a, **kw) def do_help(self, parsed): """