From 37fbbf55fa5fc58bea7cd3d7bb7878318523fb48 Mon Sep 17 00:00:00 2001 From: Nik Nyby Date: Wed, 4 Oct 2017 23:09:18 -0400 Subject: [PATCH] quickstart: use print function in example query --- docs/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 7171bbf2..008372d9 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -52,6 +52,6 @@ Then we can start querying our schema: .. code:: python result = schema.execute('{ hello }') - print result.data['hello'] # "Hello stranger" + print(result.data['hello']) # "Hello stranger" Congrats! You got your first graphene schema working!