From 40bb5509b9f25c20c29017ea2b282fa46982fe09 Mon Sep 17 00:00:00 2001 From: Sylvain Lebresne Date: Wed, 22 Feb 2012 11:32:17 +0100 Subject: [PATCH] Extra change for #3933 for 1.1 --- bin/cqlsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cqlsh b/bin/cqlsh index ecad450e78..84aebea649 100755 --- a/bin/cqlsh +++ b/bin/cqlsh @@ -974,7 +974,7 @@ class Shell(cmd.Cmd): optval = cql_escape(optval) notable_columns.append((option, optval)) for option, thriftname, _ in cqlhandling.columnfamily_map_options: - optmap = getattr(cfdef, thriftname or option) + optmap = getattr(cfdef, thriftname or option, {}) for k, v in optmap.items(): notable_columns.append(('%s:%s' % (option, k), cql_escape(v))) out.write('\n)')