diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2017-04-26 00:23:01 -0500 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-04-25 22:23:01 -0700 |
commit | 11dae722c25e4b494615c10f899c6601e06694d4 (patch) | |
tree | 8791e74e7d9ef57939ef2621fd4d327d3c751103 /var | |
parent | 33c9a91d853da82dccf3d244e06c0c3db0061c9a (diff) | |
download | spack-11dae722c25e4b494615c10f899c6601e06694d4.tar.gz spack-11dae722c25e4b494615c10f899c6601e06694d4.tar.bz2 spack-11dae722c25e4b494615c10f899c6601e06694d4.tar.xz spack-11dae722c25e4b494615c10f899c6601e06694d4.zip |
Fix bug with '# noqa' filtering (#3993)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin.mock/packages/flake8/package.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/var/spack/repos/builtin.mock/packages/flake8/package.py b/var/spack/repos/builtin.mock/packages/flake8/package.py index bd062d71bc..22598bead1 100644 --- a/var/spack/repos/builtin.mock/packages/flake8/package.py +++ b/var/spack/repos/builtin.mock/packages/flake8/package.py @@ -71,7 +71,11 @@ class Flake8(Package): patch('hyper-specific-patch-that-fixes-some-random-bug-that-probably-only-affects-one-user.patch', when='%gcc@3.2.2:3.2.3') def install(self, spec, prefix): - pass + # Make sure lines with '# noqa' work as expected. Don't just + # remove them entirely. This will mess up the indentation of + # the following lines. + if 'really-long-if-statement' != 'that-goes-over-the-line-length-limit-and-requires-noqa': # noqa + pass # '@when' decorated functions are exempt from redefinition errors @when('@2.0') |