From 8dccee16af14284eff0b9dbddcde6c8303abb474 Mon Sep 17 00:00:00 2001
From: Patrick Wendell <pwendell@gmail.com>
Date: Thu, 11 Jul 2013 16:50:27 -0700
Subject: [PATCH] Bug fix

---
 ec2/spark_ec2.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ec2/spark_ec2.py b/ec2/spark_ec2.py
index 0ce5ce867f..413fcf2695 100755
--- a/ec2/spark_ec2.py
+++ b/ec2/spark_ec2.py
@@ -236,7 +236,7 @@ def launch_cluster(conn, opts, cluster_name):
                                       die_on_error=False)
   if any(active_nodes):
     print >> stderr, ("ERROR: There are already instances running in " +
-        "group %s, %s or %s" % (master_group.name, slave_group.name))
+        "group %s or %s" % (master_group.name, slave_group.name))
     sys.exit(1)
 
   # Figure out Spark AMI
-- 
GitLab