diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-12 19:42:53 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-12 19:42:53 +0100 |
commit | 5cd5c4f4a14f406640708a471e86a37e9132c6b9 (patch) | |
tree | 3df081d66537139f31657a051ffe4da8daa2a110 /tests | |
parent | changed some test parameters (diff) | |
download | pyload-5cd5c4f4a14f406640708a471e86a37e9132c6b9.tar.xz |
pyflakes fix
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/pyflakes.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/pyflakes.sh b/tests/pyflakes.sh index cdfc11319..1ed61d2ee 100755 --- a/tests/pyflakes.sh +++ b/tests/pyflakes.sh @@ -1,2 +1,3 @@ #!/bin/bash find -name '*.py' |egrep -v '^.(/tests/|/module/lib)'|xargs pyflakes > pyflakes.log || : +cat pyflakes.log | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' > pyflakes.txt |