diff options
author | Joshua Harlow <harlowja@gmail.com> | 2016-06-15 12:17:05 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@gmail.com> | 2016-06-15 12:17:05 -0700 |
commit | 417fda64958f04c705860b737787fc921b965ade (patch) | |
tree | 5d2b5dcef14549ed4228e7a4b914223b612497a9 /tools/run-pep8 | |
parent | 2c5c2d7a500ccb88eee245a1d5f1ca1f9a2156e6 (diff) | |
download | vyos-cloud-init-417fda64958f04c705860b737787fc921b965ade.tar.gz vyos-cloud-init-417fda64958f04c705860b737787fc921b965ade.zip |
Fix a few tools and tests for newer pep8
Diffstat (limited to 'tools/run-pep8')
-rwxr-xr-x | tools/run-pep8 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/run-pep8 b/tools/run-pep8 index 086400fc..4bd0bbfb 100755 --- a/tools/run-pep8 +++ b/tools/run-pep8 @@ -1,8 +1,7 @@ #!/bin/bash -pycheck_dirs=( "cloudinit/" "bin/" "tests/" "tools/" ) -# FIXME: cloud-init modifies sys module path, pep8 does not like -# bin_files=( "bin/cloud-init" ) +pycheck_dirs=( "cloudinit/" "tests/" "tools/" ) + CR=" " [ "$1" = "-v" ] && { verbose="$1"; shift; } || verbose="" |