Skip to content

Commit 46ee0cc

Browse files
Jon Wayne Parrottlandrito
authored andcommitted
Fix doc build by swapping install order (googleapis#3828)
1 parent 482ec58 commit 46ee0cc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

nox.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ def docs(session):
3030
# Install Sphinx and also all of the google-cloud-* packages.
3131
session.chdir(os.path.realpath(os.path.dirname(__file__)))
3232
session.install('Sphinx >= 1.6.2', 'sphinx_rtd_theme')
33+
session.install('.')
3334
session.install(
34-
'core/', 'bigquery/', 'bigtable/', 'datastore/', 'dns/', 'language/',
35-
'logging/', 'error_reporting/', 'monitoring/', 'pubsub/',
35+
'core/', 'storage/', 'bigquery/', 'bigtable/', 'datastore/', 'dns/',
36+
'language/', 'logging/', 'error_reporting/', 'monitoring/', 'pubsub/',
3637
'resource_manager/', 'runtimeconfig/', 'spanner/', 'speech/',
37-
'storage/', 'trace/', 'translate/', 'vision/',
38+
'trace/', 'translate/', 'vision/',
3839
)
39-
session.install('.')
4040

4141
# Build the docs!
4242
session.run('bash', './test_utils/scripts/update_docs.sh')

storage/google/cloud/storage/bucket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def _blobs_page_start(iterator, page, response):
4343
:type iterator: :class:`~google.api.core.page_iterator.Iterator`
4444
:param iterator: The iterator that is currently in use.
4545
46-
:type page: :class:`~google.cloud.iterator.Page`
46+
:type page: :class:`~google.cloud.api.core.page_iterator.Page`
4747
:param page: The page that was just created.
4848
4949
:type response: dict

0 commit comments

Comments
 (0)