Repository: bookkeeper Updated Branches: refs/heads/master d5cea821c -> 2506c98f8
BOOKKEEPER-939: Fix typo of bookkeeper merge pr script There is typo of bk-merge-pr.py script on merging pr without a jira id. Author: Sijie Guo <[email protected]> Reviewers: Matteo Merli <[email protected]> Closes #53 from sijie/sijie/fix_merge_script Project: http://git-wip-us.apache.org/repos/asf/bookkeeper/repo Commit: http://git-wip-us.apache.org/repos/asf/bookkeeper/commit/2506c98f Tree: http://git-wip-us.apache.org/repos/asf/bookkeeper/tree/2506c98f Diff: http://git-wip-us.apache.org/repos/asf/bookkeeper/diff/2506c98f Branch: refs/heads/master Commit: 2506c98f8cc474d538df84ca30d229fbe0470e29 Parents: d5cea82 Author: Sijie Guo <[email protected]> Authored: Mon Jul 11 15:19:33 2016 -0700 Committer: Matteo Merli <[email protected]> Committed: Mon Jul 11 15:19:33 2016 -0700 ---------------------------------------------------------------------- dev/bk-merge-pr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bookkeeper/blob/2506c98f/dev/bk-merge-pr.py ---------------------------------------------------------------------- diff --git a/dev/bk-merge-pr.py b/dev/bk-merge-pr.py index c3cda40..a3fd206 100755 --- a/dev/bk-merge-pr.py +++ b/dev/bk-merge-pr.py @@ -336,7 +336,7 @@ def resolve_jira_issues(title, merge_branches, comment): jira_ids = re.findall("%s-[0-9]{3,6}" % CAPITALIZED_PROJECT_NAME, title) if len(jira_ids) == 0: - pritnf ("No JIRA issue found to update") + print "No JIRA issue found to update" for jira_id in jira_ids: resolve_jira_issue(merge_branches, comment, jira_id)
