summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2015-12-18 19:23:45 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2015-12-18 19:23:45 -0800
commitabd3d3946d8a4d5b73f26a682c1728cf9d4d05df (patch)
tree5a36593c4c3a02c1a36b398fff96841f4b4c39e0 /lib
parent2f9ee884087005d90a9d63d29667cca1634fafca (diff)
downloadspack-abd3d3946d8a4d5b73f26a682c1728cf9d4d05df.tar.gz
spack-abd3d3946d8a4d5b73f26a682c1728cf9d4d05df.tar.bz2
spack-abd3d3946d8a4d5b73f26a682c1728cf9d4d05df.tar.xz
spack-abd3d3946d8a4d5b73f26a682c1728cf9d4d05df.zip
Format to 80 char width.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/cmd/uninstall.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/spack/spack/cmd/uninstall.py b/lib/spack/spack/cmd/uninstall.py
index 191d9d88e8..03873bb5f8 100644
--- a/lib/spack/spack/cmd/uninstall.py
+++ b/lib/spack/spack/cmd/uninstall.py
@@ -42,9 +42,9 @@ def setup_parser(subparser):
help="Remove regardless of whether other packages depend on this one.")
subparser.add_argument(
'-a', '--all', action='store_true', dest='all',
- help="USE CAREFULLY. Remove ALL installed packages that match each supplied spec. " +
- "i.e., if you say uninstall libelf, ALL versions of libelf are uninstalled. " +
- "This is both useful and dangerous, like rm -r.")
+ help="USE CAREFULLY. Remove ALL installed packages that match each " +
+ "supplied spec. i.e., if you say uninstall libelf, ALL versions of " +
+ "libelf are uninstalled. This is both useful and dangerous, like rm -r.")
subparser.add_argument(
'packages', nargs=argparse.REMAINDER, help="specs of packages to uninstall")
@@ -81,7 +81,8 @@ def uninstall(parser, args):
pkgs.append(s.package)
except spack.packages.UnknownPackageError, e:
- # The package.py file has gone away -- but still want to uninstall.
+ # The package.py file has gone away -- but still want to
+ # uninstall.
spack.Package(s).do_uninstall(force=True)
# Sort packages to be uninstalled by the number of installed dependents