From 44e7a08903c84c0666b5da5dc083ead3e45e9452 Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Fri, 4 May 2012 12:42:28 -0500 Subject: [PATCH] Cqlsh: fix 'describe columnfamily' from CASSADRA-4164 Patch by paul cannon, reviewed by brandonwilliams --- bin/cqlsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cqlsh b/bin/cqlsh index b1833fd7f3..fffd95ed35 100755 --- a/bin/cqlsh +++ b/bin/cqlsh @@ -1229,7 +1229,7 @@ class Shell(cmd.Cmd): def describe_columnfamily(self, cfname): print - self.print_recreate_columnfamily(ksname, cfname, sys.stdout) + self.print_recreate_columnfamily(self.current_keyspace, cfname, sys.stdout) print def describe_columnfamilies(self, ksname):