Docs: attempt to fix doc tests for sphinx 4.1.2

This commit is contained in:
Adam J. Stewart 2021-07-26 14:59:18 -04:00 committed by Todd Gamblin
parent 6472ee8c76
commit 26c3df20f1

View file

@ -2658,14 +2658,14 @@ def test_process(pkg, kwargs):
class BundlePackage(PackageBase):
"""General purpose bundle, or no-code, package class."""
#: There are no phases by default but the property is required to support
#: post-install hooks (e.g., for module generation).
# There are no phases by default but the property is required to support
# post-install hooks (e.g., for module generation).
phases = [] # type: List[str]
#: This attribute is used in UI queries that require to know which
#: build-system class we are using
# This attribute is used in UI queries that require to know which
# build-system class we are using
build_system_class = 'BundlePackage'
#: Bundle packages do not have associated source or binary code.
# Bundle packages do not have associated source or binary code.
has_code = False