diff options
author | Luigi Calori <luigi.calori@gmail.com> | 2016-03-09 14:45:29 +0100 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-03-09 09:27:53 -0800 |
commit | bf4d51ea0b00e091728ecf8d4d51aa295448a416 (patch) | |
tree | f12f358984dece68b828730358f2710e850f4038 | |
parent | ca343889fc6f97bc4271b5242b99b49e36ab968b (diff) | |
download | spack-bf4d51ea0b00e091728ecf8d4d51aa295448a416.tar.gz spack-bf4d51ea0b00e091728ecf8d4d51aa295448a416.tar.bz2 spack-bf4d51ea0b00e091728ecf8d4d51aa295448a416.tar.xz spack-bf4d51ea0b00e091728ecf8d4d51aa295448a416.zip |
fix error exit when doing spack patch without parameters, same as spack stage
-rw-r--r-- | lib/spack/spack/cmd/patch.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/spack/spack/cmd/patch.py b/lib/spack/spack/cmd/patch.py index 44fc8696db..b04b402738 100644 --- a/lib/spack/spack/cmd/patch.py +++ b/lib/spack/spack/cmd/patch.py @@ -24,6 +24,7 @@ ############################################################################## import argparse +import llnl.util.tty as tty import spack.cmd import spack |