Skip to content

Commit

Permalink
Merge pull request #241 from quartzmo/patch-1
Browse files Browse the repository at this point in the history
Fix property name in projection_query
  • Loading branch information
Jon Wayne Parrott committed Apr 6, 2016
2 parents 3a89c7c + 904fd50 commit a25245c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datastore/api/snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def projection_query(client):

for task in query.fetch():
priorities.append(task['priority'])
percent_completes.append(task['priority'])
percent_completes.append(task['percent_complete'])
# [END run_query_projection]

return priorities, percent_completes
Expand Down

0 comments on commit a25245c

Please sign in to comment.