From 6eed279fceb07c2247e263614b1c82627293a8b9 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Mon, 16 Jan 2017 16:56:38 -0600 Subject: [PATCH] Don't duplicate spack test in spack help (#2837) --- lib/spack/spack/cmd/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/spack/spack/cmd/__init__.py b/lib/spack/spack/cmd/__init__.py index 6fa08830144..764b6fffcff 100644 --- a/lib/spack/spack/cmd/__init__.py +++ b/lib/spack/spack/cmd/__init__.py @@ -39,10 +39,10 @@ # # 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 @@ 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()