summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2017-01-16 16:56:38 -0600
committerTodd Gamblin <tgamblin@llnl.gov>2017-01-16 14:56:38 -0800
commit6eed279fceb07c2247e263614b1c82627293a8b9 (patch)
treea768c3075a051b334f1790b35d0c03cec3643377 /lib
parentaa3cc0ea817ffee8ebf292c8f15eb8eb0fc26866 (diff)
downloadspack-6eed279fceb07c2247e263614b1c82627293a8b9.tar.gz
spack-6eed279fceb07c2247e263614b1c82627293a8b9.tar.bz2
spack-6eed279fceb07c2247e263614b1c82627293a8b9.tar.xz
spack-6eed279fceb07c2247e263614b1c82627293a8b9.zip
Don't duplicate spack test in spack help (#2837)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/cmd/__init__.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/spack/spack/cmd/__init__.py b/lib/spack/spack/cmd/__init__.py
index 6fa0883014..764b6fffcf 100644
--- a/lib/spack/spack/cmd/__init__.py
+++ b/lib/spack/spack/cmd/__init__.py
@@ -39,10 +39,10 @@ import spack.store
#
# Settings for commands that modify configuration
#
-# Commands that modify confguration By default modify the *highest*
+# Commands that modify configuration by default modify the *highest*
# priority scope.
default_modify_scope = spack.config.highest_precedence_scope().name
-# Commands that list confguration list *all* scopes by default.
+# Commands that list configuration list *all* scopes by default.
default_list_scope = None
# cmd has a submodule called "list" so preserve the python list module
@@ -61,7 +61,6 @@ for file in os.listdir(command_path):
if file.endswith(".py") and not re.search(ignore_files, file):
cmd = re.sub(r'.py$', '', file)
commands.append(cmd)
-commands.append('test')
commands.sort()