From 927e3ad28eaa54f99c6f71dfa4c60e86826c4e71 Mon Sep 17 00:00:00 2001 From: Jon Haddad Date: Tue, 12 Aug 2014 16:20:41 -0700 Subject: [PATCH] fixed example setup() call --- docs/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 7bb0e5e9..deda30ef 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -53,10 +53,10 @@ Getting Started # see http://datastax.github.io/python-driver/api/cassandra/cluster.html for options # the list of hosts will be passed to create a Cluster() instance - >>> connection.setup(['127.0.0.1']) + >>> connection.setup(['127.0.0.1'], "cqlengine") # if you're connecting to a 1.2 cluster - >>> connection.setup(['127.0.0.1'], protocol_version=1) + >>> connection.setup(['127.0.0.1'], "cqlengine", protocol_version=1) #...and create your CQL table >>> from cqlengine.management import sync_table