From f5b30bf86750115922eaa9744053ce0b4cff0488 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Fri, 10 Oct 2014 20:15:33 -0500 Subject: [PATCH] Formatting --- tools/travis_test.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/travis_test.sh b/tools/travis_test.sh index 25245ee2..6ed95049 100755 --- a/tools/travis_test.sh +++ b/tools/travis_test.sh @@ -54,16 +54,16 @@ echo 'backend : Template' > $MPL_DIR/matplotlibrc tools/header.py "Run doc examples" for f in doc/examples/*.py; do - python "$f"; + python "$f" if [ $? -ne 0 ]; then - exit 1; + exit 1 fi done for f in doc/examples/applications/*.py; do - python "$f"; + python "$f" if [ $? -ne 0 ]; then - exit 1; + exit 1 fi done