~ubuntu-docviewer-dev/ubuntu-docviewer-app/lo-viewer

« back to all changes in this revision

Viewing changes to run-pep8

Update framework to 'ubuntu-sdk-14.10'. Fixes: https://bugs.launchpad.net/bugs/1401718.

Approved by Nekhelesh Ramananthan, Ubuntu Phone Apps Jenkins Bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
set -e
3
3
 
4
4
echo "= pep8 ="
5
 
for i in `find .. -iname '*.py'` ; do 
 
5
for i in `find . -iname '*.py'` ; do 
6
6
    echo "Checking $i"
7
7
    pep8 $i
8
8
done