diff options
author | Tom Scogland <scogland1@llnl.gov> | 2016-06-20 10:53:19 -0700 |
---|---|---|
committer | Tom Scogland <scogland1@llnl.gov> | 2016-06-20 10:53:19 -0700 |
commit | 0377f3580b0985bd65fb64e82a6fbb9b397b56ab (patch) | |
tree | 40923092b4f550d61ea4868052e4059cfb961be3 | |
parent | 8770f2a0ea14c7145e87bfd08ca7149ae3838127 (diff) | |
download | spack-0377f3580b0985bd65fb64e82a6fbb9b397b56ab.tar.gz spack-0377f3580b0985bd65fb64e82a6fbb9b397b56ab.tar.bz2 spack-0377f3580b0985bd65fb64e82a6fbb9b397b56ab.tar.xz spack-0377f3580b0985bd65fb64e82a6fbb9b397b56ab.zip |
switching argument naming
-rw-r--r-- | lib/spack/spack/cmd/list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/list.py b/lib/spack/spack/cmd/list.py index 228ab76780..9ce63fa1a4 100644 --- a/lib/spack/spack/cmd/list.py +++ b/lib/spack/spack/cmd/list.py @@ -42,7 +42,7 @@ def setup_parser(subparser): '-i', '--insensitive', action='store_true', default=False, help='Filtering will be case insensitive.') subparser.add_argument( - '-s', '--search_description', action='store_true', default=False, + '-d', '--search-description', action='store_true', default=False, help='Filtering will also search the description for a match.') |