~james-page/simplestreams/full-arch-support

« back to all changes in this revision

Viewing changes to tools/run-pep8

  • Committer: Scott Moser
  • Date: 2015-08-28 17:26:12 UTC
  • Revision ID: smoser@ubuntu.com-20150828172612-kcd1y2k2c4qnmghk
add 'make-test-data' to run-pep8 and fix pep8 issues in it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
if [ $# -eq 0 ]; then
4
4
   files=( $(find * -name "*.py" -type f)
5
 
           $(for f in bin/*; do [ "${f%.*}" = "$f" ] && echo "$f"; done) )
 
5
           $(for f in bin/*; do [ "${f%.*}" = "$f" ] && echo "$f"; done) 
 
6
           tools/make-test-data
 
7
         )
6
8
else
7
9
   files=( "$@" );
8
10
fi