Skip to content

Commit

Permalink
Fix 'list_entries' example with projects. (#8858)
Browse files Browse the repository at this point in the history
Closes #7916.
  • Loading branch information
tseaver authored Jul 31, 2019
1 parent 52c89b6 commit a699d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logging/docs/snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def client_list_entries_multi_project(

# [START client_list_entries_multi_project]
PROJECT_IDS = ["one-project", "another-project"]
for entry in client.list_entries(project_ids=PROJECT_IDS): # API call(s)
for entry in client.list_entries(projects=PROJECT_IDS): # API call(s)
do_something_with(entry)
# [END client_list_entries_multi_project]

Expand Down

0 comments on commit a699d86

Please sign in to comment.