Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ def docs(session):
# Install Sphinx and also all of the google-cloud-* packages.
session.chdir(os.path.realpath(os.path.dirname(__file__)))
session.install('Sphinx >= 1.6.2', 'sphinx_rtd_theme')
session.install('.')
session.install(
'core/', 'bigquery/', 'bigtable/', 'datastore/', 'dns/', 'language/',
'logging/', 'error_reporting/', 'monitoring/', 'pubsub/',
'core/', 'storage/', 'bigquery/', 'bigtable/', 'datastore/', 'dns/',
'language/', 'logging/', 'error_reporting/', 'monitoring/', 'pubsub/',
'resource_manager/', 'runtimeconfig/', 'spanner/', 'speech/',
'storage/', 'trace/', 'translate/', 'vision/',
'trace/', 'translate/', 'vision/',
)
session.install('.')

# Build the docs!
session.run('bash', './test_utils/scripts/update_docs.sh')
Expand Down
2 changes: 1 addition & 1 deletion storage/google/cloud/storage/bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def _blobs_page_start(iterator, page, response):
:type iterator: :class:`~google.api.core.page_iterator.Iterator`
:param iterator: The iterator that is currently in use.

:type page: :class:`~google.cloud.iterator.Page`
:type page: :class:`~google.cloud.api.core.page_iterator.Page`
:param page: The page that was just created.

:type response: dict
Expand Down