Cqlsh: fix 'describe columnfamily' from CASSADRA-4164 Patch by paul cannon, reviewed by brandonwilliams
Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/44e7a089 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/44e7a089 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/44e7a089 Branch: refs/heads/trunk Commit: 44e7a08903c84c0666b5da5dc083ead3e45e9452 Parents: 0f9c391 Author: Brandon Williams <[email protected]> Authored: Fri May 4 12:42:28 2012 -0500 Committer: Brandon Williams <[email protected]> Committed: Fri May 4 12:42:28 2012 -0500 ---------------------------------------------------------------------- bin/cqlsh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/44e7a089/bin/cqlsh ---------------------------------------------------------------------- diff --git a/bin/cqlsh b/bin/cqlsh index b1833fd..fffd95e 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):
