Format to 80 char width.

This commit is contained in:
Todd Gamblin 2015-12-18 19:23:45 -08:00
parent 2f9ee88408
commit abd3d3946d

View File

@ -42,9 +42,9 @@ def setup_parser(subparser):
help="Remove regardless of whether other packages depend on this one.") help="Remove regardless of whether other packages depend on this one.")
subparser.add_argument( subparser.add_argument(
'-a', '--all', action='store_true', dest='all', '-a', '--all', action='store_true', dest='all',
help="USE CAREFULLY. Remove ALL installed packages that match each supplied spec. " + help="USE CAREFULLY. Remove ALL installed packages that match each " +
"i.e., if you say uninstall libelf, ALL versions of libelf are uninstalled. " + "supplied spec. i.e., if you say uninstall libelf, ALL versions of " +
"This is both useful and dangerous, like rm -r.") "libelf are uninstalled. This is both useful and dangerous, like rm -r.")
subparser.add_argument( subparser.add_argument(
'packages', nargs=argparse.REMAINDER, help="specs of packages to uninstall") 'packages', nargs=argparse.REMAINDER, help="specs of packages to uninstall")
@ -81,7 +81,8 @@ def uninstall(parser, args):
pkgs.append(s.package) pkgs.append(s.package)
except spack.packages.UnknownPackageError, e: 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) spack.Package(s).do_uninstall(force=True)
# Sort packages to be uninstalled by the number of installed dependents # Sort packages to be uninstalled by the number of installed dependents