Skip to content

Commit 8c195bb

Browse files
committed
removed erroneous line
1 parent 4f1ed46 commit 8c195bb

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dev/merge_spark_pr.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -357,8 +357,7 @@ def main():
357357
print "I've re-written the title as follows to match the standard format:"
358358
print "Original: %s" % pr["title"]
359359
print "Modified: %s" % standardize_jira_ref(pr["title"])
360-
prompt = "Would you like to use the modified title?"
361-
result = raw_input("%s (y/n): " % prompt)
360+
result = raw_input("Would you like to use the modified title? (y/n): ")
362361
if result.lower() == "y":
363362
title = standardize_jira_ref(pr["title"])
364363
print "Using modified title:"
@@ -367,7 +366,6 @@ def main():
367366
print "Using original title:"
368367
print title
369368

370-
title = standardize_jira_ref(pr["title"])
371369
body = pr["body"]
372370
target_ref = pr["base"]["ref"]
373371
user_login = pr["user"]["login"]

0 commit comments

Comments
 (0)