summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2021-07-26 15:06:44 -0400
committerTodd Gamblin <tgamblin@llnl.gov>2021-07-26 13:46:27 -0700
commitab39f548dc640cf6f9cd55af0b2c7f938a37cb44 (patch)
treec75fd1f00450bfab7cfcbce916bfb9b55ae8f2e7 /lib
parent26c3df20f160b851465e1b108eb364ef750736c0 (diff)
downloadspack-ab39f548dc640cf6f9cd55af0b2c7f938a37cb44.tar.gz
spack-ab39f548dc640cf6f9cd55af0b2c7f938a37cb44.tar.bz2
spack-ab39f548dc640cf6f9cd55af0b2c7f938a37cb44.tar.xz
spack-ab39f548dc640cf6f9cd55af0b2c7f938a37cb44.zip
Confirm that the docstring is the issue
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/package.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/spack/spack/package.py b/lib/spack/spack/package.py
index 82457674b3..c60d4d03e4 100644
--- a/lib/spack/spack/package.py
+++ b/lib/spack/spack/package.py
@@ -2657,15 +2657,15 @@ 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).
+ #"""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).
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