Skip to content

Commit

Permalink
Fix doc build by swapping install order (googleapis#3828)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Wayne Parrott authored and landrito committed Aug 22, 2017
1 parent 482ec58 commit 46ee0cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit 46ee0cc

Please sign in to comment.