Repository: hbase Updated Branches: refs/heads/branch-2 608888698 -> 37c40afaf
HBASE-18607: fix submit-patch.py to support utf8 one liner to support utf8 content Change-Id: I57508879bea25aa5ae69e01e777b91a7160aafc8 Signed-off-by: Apekshit Sharma <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/37c40afa Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/37c40afa Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/37c40afa Branch: refs/heads/branch-2 Commit: 37c40afaff9a2e3dfdc4e964f9031fe2955d0484 Parents: 6088886 Author: Tamas Penzes <[email protected]> Authored: Wed Aug 16 10:25:45 2017 +0200 Committer: Apekshit Sharma <[email protected]> Committed: Fri Aug 25 00:04:37 2017 -0700 ---------------------------------------------------------------------- dev-support/submit-patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/37c40afa/dev-support/submit-patch.py ---------------------------------------------------------------------- diff --git a/dev-support/submit-patch.py b/dev-support/submit-patch.py index 236f31d..577be52 100755 --- a/dev-support/submit-patch.py +++ b/dev-support/submit-patch.py @@ -250,7 +250,7 @@ patch_filepath = os.path.join(patch_dir, patch_filename) diff = git.format_patch(base_branch, stdout = True) with open(patch_filepath, "w") as f: - f.write(diff) + f.write(diff.encode('utf8')) if args.jira_id is not None: creds = get_credentials()
