Skip to content
This repository has been archived by the owner on Aug 4, 2020. It is now read-only.

Commit

Permalink
Added missing colon for for loop in pycassaShell
Browse files Browse the repository at this point in the history
  • Loading branch information
rchowe committed Jun 28, 2012
1 parent 60b2a79 commit 7304fb8
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 7304fb8

Please sign in to comment.