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

Commit

Permalink
Fix pycassaShell keyspace option usage
Browse files Browse the repository at this point in the history
  • Loading branch information
thobbs committed Dec 9, 2010
1 parent 08e818e commit dbbb800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycassaShell
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ print "Keyspace: %s" % options.keyspace
print "Host: %s:%d" % (hostname, port)

if options.keyspace:
pool = pycassa.QueuePool(keyspace=keyspace,
pool = pycassa.QueuePool(keyspace=options.keyspace,
server_list=['%s:%d' % (hostname, port)],
credentials=credentials,
framed_transport=framed)
Expand Down

0 comments on commit dbbb800

Please sign in to comment.