Skip to content

Commit

Permalink
Remove leftover encode from cherrypick_pr (#14929)
Browse files Browse the repository at this point in the history
  • Loading branch information
kvch committed Dec 9, 2019
1 parent cf84305 commit e241826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-tools/cherrypick_pr
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def main():

# create PR
request = session.post(base + "/pulls", json=dict(
title="Cherry-pick #{} to {}: {}".format(args.pr_number, args.to_branch, original_pr["title"].encode('utf-8')),
title="Cherry-pick #{} to {}: {}".format(args.pr_number, args.to_branch, original_pr["title"]),
head=remote_user + ":" + tmp_branch,
base=args.to_branch,
body="Cherry-pick of PR #{} to {} branch. Original message: \n\n{}"
Expand Down

0 comments on commit e241826

Please sign in to comment.