Skip to content

Commit

Permalink
Undo bad sorting in pycassaShell's describe_keyspace
Browse files Browse the repository at this point in the history
Affects pycassa#154
  • Loading branch information
thobbs committed Jun 21, 2012
1 parent 67aef98 commit 60b2a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycassaShell
Expand Up @@ -59,7 +59,7 @@ def describe_keyspace(keyspace):
cfs = SYSTEM_MANAGER.get_keyspace_column_families(keyspace).keys()
cfs.sort()
print "Column Families:"
for cf in sorted(cfs, key=lambda cf: cf.name):
for cf in cfs
print " " + cf

def describe_column_family(arg1, arg2=None):
Expand Down

0 comments on commit 60b2a79

Please sign in to comment.