From 21da538b432a165c2c4ba6eb60ff74b7ed5ab5b4 Mon Sep 17 00:00:00 2001 From: Nicholas Chammas Date: Sun, 3 Aug 2014 03:25:45 -0400 Subject: [PATCH] [SPARK-2627] it's PEP 8, not PEP8 Minor, I know. --- dev/lint-python | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/lint-python b/dev/lint-python index 3105e64d33d4b..50e52460be1e7 100755 --- a/dev/lint-python +++ b/dev/lint-python @@ -32,10 +32,10 @@ pep8_status=${PIPESTATUS[0]} #$? if [ $pep8_status -ne 0 ] then - echo "PEP8 checks failed." + echo "PEP 8 checks failed." cat "$PEP8_REPORT_PATH" else - echo "PEP8 checks passed." + echo "PEP 8 checks passed." fi rm -f "$PEP8_REPORT_PATH"