diff options
author | dunatotatos <contact@dunatotatos.com> | 2022-08-03 12:38:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 10:38:56 +0000 |
commit | ab87cac63f4b52242cf6903d11b6d98edf31f3e8 (patch) | |
tree | 575026a430aa87bcbb15b304259d5761b8e4bc20 /lib | |
parent | 09c56255c309aa37ee63658d445ebdd2184368cc (diff) | |
download | spack-ab87cac63f4b52242cf6903d11b6d98edf31f3e8.tar.gz spack-ab87cac63f4b52242cf6903d11b6d98edf31f3e8.tar.bz2 spack-ab87cac63f4b52242cf6903d11b6d98edf31f3e8.tar.xz spack-ab87cac63f4b52242cf6903d11b6d98edf31f3e8.zip |
Match documentation of spack create with actual behavior. (#31892)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/docs/packaging_guide.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/docs/packaging_guide.rst b/lib/spack/docs/packaging_guide.rst index 9ea39c0173..8a75ffd0c6 100644 --- a/lib/spack/docs/packaging_guide.rst +++ b/lib/spack/docs/packaging_guide.rst @@ -126,7 +126,7 @@ generates a boilerplate template for your package, and opens up the new # If you submit this package back to Spack as a pull request, # please first remove this boilerplate and all FIXME comments. # - from spack import * + from spack.package import * class Gmp(AutotoolsPackage): |