From 8c195bb199b1e325929100e34f6d37cb0f824fc2 Mon Sep 17 00:00:00 2001 From: texasmichelle Date: Mon, 20 Apr 2015 13:08:30 -0500 Subject: [PATCH] removed erroneous line --- dev/merge_spark_pr.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dev/merge_spark_pr.py b/dev/merge_spark_pr.py index c37bf73e23807..4d1ab50226277 100755 --- a/dev/merge_spark_pr.py +++ b/dev/merge_spark_pr.py @@ -357,8 +357,7 @@ def main(): print "I've re-written the title as follows to match the standard format:" print "Original: %s" % pr["title"] print "Modified: %s" % standardize_jira_ref(pr["title"]) - prompt = "Would you like to use the modified title?" - result = raw_input("%s (y/n): " % prompt) + result = raw_input("Would you like to use the modified title? (y/n): ") if result.lower() == "y": title = standardize_jira_ref(pr["title"]) print "Using modified title:" @@ -367,7 +366,6 @@ def main(): print "Using original title:" print title - title = standardize_jira_ref(pr["title"]) body = pr["body"] target_ref = pr["base"]["ref"] user_login = pr["user"]["login"]