summaryrefslogtreecommitdiff
path: root/manage.sh
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2016-01-18 12:47:31 +0100
committerAdam Tauber <asciimoo@gmail.com>2016-01-18 12:47:31 +0100
commitbd22e9a3363090a5e4f851670b0650349a528749 (patch)
treeea0b4b80430ffebc7e9eaa2c28188884a7c67218 /manage.sh
parent6a158ca2d2c5fdec597f1025c58fad90a57312dc (diff)
downloadsearxng-bd22e9a3363090a5e4f851670b0650349a528749.tar.gz
searxng-bd22e9a3363090a5e4f851670b0650349a528749.zip
[fix] pep8 compatibilty
Diffstat (limited to 'manage.sh')
-rwxr-xr-xmanage.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/manage.sh b/manage.sh
index 0cff4b352..89d1ddb0e 100755
--- a/manage.sh
+++ b/manage.sh
@@ -16,7 +16,10 @@ update_dev_packages() {
pep8_check() {
echo '[!] Running pep8 check'
- pep8 --max-line-length=120 "$SEARX_DIR" "$BASE_DIR/tests"
+ # ignored rules:
+ # E402 module level import not at top of file
+ # W503 line break before binary operator
+ pep8 --max-line-length=120 --ignore "E402,W503" "$SEARX_DIR" "$BASE_DIR/tests"
}
unit_tests() {