From dd2bb514982e2086744bc2f692704f76eaa13e29 Mon Sep 17 00:00:00 2001 From: Selamanse Date: Mon, 13 Nov 2017 17:21:18 +0100 Subject: [PATCH] Fixes python error msg --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index a4669f9..e9bc8d4 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -6,7 +6,7 @@ NODE_VERSION=4.7.1 checkcmd() { curl -m 1 -s localhost:$port$path/api/v1/info | \ - python -c "import sys, json; print json.load(sys.stdin)['success']" | \ + python -c "import sys, json; print json.load(sys.stdin)['success']" >/dev/null 2>&1 | \ grep "True" >/dev/null 2>&1 }