Skip to content

Commit

Permalink
removed erroneous line
Browse files Browse the repository at this point in the history
  • Loading branch information
texasmichelle committed Apr 20, 2015
1 parent 4f1ed46 commit 8c195bb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions dev/merge_spark_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:"
Expand All @@ -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"]
Expand Down

0 comments on commit 8c195bb

Please sign in to comment.