Skip to content

Commit 7b08dbd

Browse files
authored
Merge pull request #560 from nikolas/patch-1
quickstart: use print function in example query
2 parents 9c10649 + 37fbbf5 commit 7b08dbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ Then we can start querying our schema:
5252
.. code:: python
5353
5454
result = schema.execute('{ hello }')
55-
print result.data['hello'] # "Hello stranger"
55+
print(result.data['hello']) # "Hello stranger"
5656
5757
Congrats! You got your first graphene schema working!

0 commit comments

Comments
 (0)