summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2021-07-26 14:59:18 -0400
committerTodd Gamblin <tgamblin@llnl.gov>2021-07-26 13:46:27 -0700
commit26c3df20f160b851465e1b108eb364ef750736c0 (patch)
tree47e140bc18f36e5b59042aa5b4b0cf7c9c4efc8b /lib
parent6472ee8c76c3b82b0bd6f79eb6ce89eceafa029e (diff)
downloadspack-26c3df20f160b851465e1b108eb364ef750736c0.tar.gz
spack-26c3df20f160b851465e1b108eb364ef750736c0.tar.bz2
spack-26c3df20f160b851465e1b108eb364ef750736c0.tar.xz
spack-26c3df20f160b851465e1b108eb364ef750736c0.zip
Docs: attempt to fix doc tests for sphinx 4.1.2
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/package.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/spack/spack/package.py b/lib/spack/spack/package.py
index 2f63af1377..82457674b3 100644
--- a/lib/spack/spack/package.py
+++ b/lib/spack/spack/package.py
@@ -2658,14 +2658,14 @@ build_system_flags = PackageBase.build_system_flags
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