diff options
author | Scott Moser <smoser@brickies.net> | 2012-10-23 18:58:32 +0200 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2012-10-23 18:58:32 +0200 |
commit | 71b4108d029fff61ff8183ffbd77917569bea2cd (patch) | |
tree | 6564cd3f5faa26fb1c843b14d27ca6eaa23164f0 /tools/run-pep8 | |
parent | cb5893c3e3f635de4fef86f0a19be0ada0054930 (diff) | |
parent | e8a10a41d22876d555084def823817337d9c2a80 (diff) | |
download | vyos-cloud-init-71b4108d029fff61ff8183ffbd77917569bea2cd.tar.gz vyos-cloud-init-71b4108d029fff61ff8183ffbd77917569bea2cd.zip |
use only util methods for reading/loading/appending/peeking
Use only util methods for reading/loading/appending/peeking
at files since it is likely soon that we will add a new
way of adjusting the root of files read, also it is useful
for debugging to track what is being read/written in a central
fashion.
Diffstat (limited to 'tools/run-pep8')
-rwxr-xr-x | tools/run-pep8 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run-pep8 b/tools/run-pep8 index ea46c117..ad55d420 100755 --- a/tools/run-pep8 +++ b/tools/run-pep8 @@ -1,6 +1,6 @@ #!/bin/bash -ci_files='cloud*.py cloudinit/*.py cloudinit/config/*.py' +ci_files='cloudinit/*.py cloudinit/config/*.py' test_files=$(find tests -name "*.py") def_files="$ci_files $test_files" |