diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2016-11-23 12:58:13 -0600 |
---|---|---|
committer | becker33 <becker33@llnl.gov> | 2016-11-23 10:58:13 -0800 |
commit | e60bccd95c1e91c3012b85598ccf24afc9d7aaa7 (patch) | |
tree | 877c3191f70be227e09f9f7a571a112bc96ba2c8 | |
parent | 7bda4e98b37eee4828acb315b182ec44b794f429 (diff) | |
download | spack-e60bccd95c1e91c3012b85598ccf24afc9d7aaa7.tar.gz spack-e60bccd95c1e91c3012b85598ccf24afc9d7aaa7.tar.bz2 spack-e60bccd95c1e91c3012b85598ccf24afc9d7aaa7.tar.xz spack-e60bccd95c1e91c3012b85598ccf24afc9d7aaa7.zip |
Fix indentation for newly created packages (#2391)
-rw-r--r-- | lib/spack/spack/cmd/create.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/spack/spack/cmd/create.py b/lib/spack/spack/cmd/create.py index feed3b8772..f22fa14602 100644 --- a/lib/spack/spack/cmd/create.py +++ b/lib/spack/spack/cmd/create.py @@ -145,10 +145,10 @@ class AutotoolsGuess(DefaultGuess): body = """\ def configure_args(self): - # FIXME: Add arguments other than --prefix - # FIXME: If not needed delete the function - args = [] - return args""" + # FIXME: Add arguments other than --prefix + # FIXME: If not needed delete the function + args = [] + return args""" class CMakeGuess(DefaultGuess): @@ -161,11 +161,11 @@ class CMakeGuess(DefaultGuess): body = """\ def cmake_args(self): - # FIXME: Add arguments other than - # FIXME: CMAKE_INSTALL_PREFIX and CMAKE_BUILD_TYPE - # FIXME: If not needed delete the function - args = [] - return args""" + # FIXME: Add arguments other than + # FIXME: CMAKE_INSTALL_PREFIX and CMAKE_BUILD_TYPE + # FIXME: If not needed delete the function + args = [] + return args""" class SconsGuess(DefaultGuess): |