diff options
author | 2013-06-29 16:11:46 +0200 | |
---|---|---|
committer | 2013-06-29 16:12:12 +0200 | |
commit | 2dd0829a97086b2f9dfab3f9fc86405a93ffb781 (patch) | |
tree | f77c9e3a85f92b676d2ad6216dbd9e1fef91da73 /tests/pyflakes.sh | |
parent | Update README.md (diff) | |
download | pyload-2dd0829a97086b2f9dfab3f9fc86405a93ffb781.tar.xz |
updated build scripts
Diffstat (limited to 'tests/pyflakes.sh')
-rwxr-xr-x | tests/pyflakes.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pyflakes.sh b/tests/pyflakes.sh index df2805f1f..d569b05f6 100755 --- a/tests/pyflakes.sh +++ b/tests/pyflakes.sh @@ -1,5 +1,5 @@ #!/bin/bash find -name '*.py' |egrep -v '^.(/tests/|/pyload/lib)'|xargs pyflakes > pyflakes.log || : # Filter warnings and strip ./ from path -cat pyflakes.log | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' | grep -i -E -v "'_'|pypath|webinterface|pyreq|hookmanager" > pyflakes.txt +cat pyflakes.log | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' | grep -i -E -v "'_'|pypath|webinterface|pyreq|addonmanager" > pyflakes.txt sed -i 's/^.\///g' pyflakes.txt |