Flake8 fixes in cmd/package-list.py file

This commit is contained in:
Paul Hopkins 2016-07-18 12:52:23 +01:00
parent 2b3ba850b3
commit cc027148eb

View file

@ -34,8 +34,8 @@
def github_url(pkg):
"""Link to a package file on github."""
return ("https://github.com/llnl/spack/blob/master/var/spack/packages/%s/package.py" %
pkg.name)
url = "https://github.com/llnl/spack/blob/master/var/spack/packages/%s/package.py" # NOQA: ignore=E501
return (url % pkg.name)
def rst_table(elts):