Skip to content

Commit

Permalink
Merge pull request pycassa#157 from rchowe/master
Browse files Browse the repository at this point in the history
Added missing colon in pycassaShell
  • Loading branch information
thobbs committed Jun 28, 2012
2 parents 60b2a79 + 7304fb8 commit 675899d
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 cfs
for cf in cfs:
print " " + cf

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

0 comments on commit 675899d

Please sign in to comment.