From f7e45813a3a58ba369d5f21595f671c84f5b91ff Mon Sep 17 00:00:00 2001 From: Nicholas Chammas Date: Wed, 9 Jul 2014 14:26:17 -0400 Subject: [PATCH] unrelated pep8 fix Functions in Python should be preceded by 2 blank lines, not 1. --- ec2/spark_ec2.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ec2/spark_ec2.py b/ec2/spark_ec2.py index 64b31b9d2e620..44775ea479ece 100755 --- a/ec2/spark_ec2.py +++ b/ec2/spark_ec2.py @@ -699,6 +699,7 @@ def ssh(host, opts, command): time.sleep(30) tries = tries + 1 + # Backported from Python 2.7 for compatiblity with 2.6 (See SPARK-1990) def _check_output(*popenargs, **kwargs): if 'stdout' in kwargs: