diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2016-05-10 16:40:46 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2016-05-11 11:32:08 -0500 |
commit | 5879f8207fe005a485c09a3d8802493455ba16ac (patch) | |
tree | 7402ba178921da8ed85da20bacf28f8f7f03e841 /lib | |
parent | ee7ec4fa66aed5bcbdb97fddf2303b3debab5c4e (diff) | |
download | spack-5879f8207fe005a485c09a3d8802493455ba16ac.tar.gz spack-5879f8207fe005a485c09a3d8802493455ba16ac.tar.bz2 spack-5879f8207fe005a485c09a3d8802493455ba16ac.tar.xz spack-5879f8207fe005a485c09a3d8802493455ba16ac.zip |
Flake8 formatting changes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/hooks/licensing.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/spack/spack/hooks/licensing.py b/lib/spack/spack/hooks/licensing.py index 56f7b6daa5..99521c8356 100644 --- a/lib/spack/spack/hooks/licensing.py +++ b/lib/spack/spack/hooks/licensing.py @@ -46,7 +46,7 @@ def set_up_license(pkg): # If not a file or variable, suggest a website for further info elif pkg.license_url: tty.warn("A license is required to use %s. See %s for details" % - (pkg.name, pkg.license_url)) + (pkg.name, pkg.license_url)) # If all else fails, you're on your own else: @@ -132,4 +132,6 @@ def symlink_license(pkg): link_name = join_path(pkg.prefix, filename) if os.path.exists(target): os.symlink(target, link_name) - tty.msg("Added local symlink %s to global license file" % link_name) + tty.msg("Added local symlink %s to global license file" % + link_name) + |