Skip to content
This repository has been archived by the owner on Feb 26, 2020. It is now read-only.

Commit

Permalink
Fix the typo in merge script on formatting modified title
Browse files Browse the repository at this point in the history
/cc franckcuny

Author: Sijie Guo <sijieg@twitter.com>

Reviewers: Franck Cuny <franck.cuny@gmail.com>

Closes #28 from sijie/sijie/fix_typo_in_merge_script
  • Loading branch information
Sijie Guo authored and sijie committed Nov 9, 2016
1 parent 298abf8 commit f3f0d55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dev/dl-merge-pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ def main():
if modified_title != commit_title:
print 'I\'ve re-written the title as follows to match the standard format:'
print 'Original: {0}'.format(commit_title)
print 'Modified: {1}'.format(modified_title)
print 'Modified: {0}'.format(modified_title)
result = raw_input('Would you like to use the modified title? (y/n): ')
if result.lower() == 'y':
commit_title = modified_title
Expand Down

0 comments on commit f3f0d55

Please sign in to comment.