| Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter.py
|
| index cf1c35be0fc256a0fd37ead27e830c0dcec8eac1..90ce807a93ca3146ab700a73e480f5ba978213a9 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter.py
|
| @@ -94,6 +94,7 @@ class TestExporter(object):
|
|
|
| patch = outbound_commit.format_patch()
|
| message = outbound_commit.message()
|
| + author = outbound_commit.author()
|
|
|
| if self.dry_run:
|
| _log.info('[dry_run] Stopping before creating PR')
|
| @@ -103,7 +104,7 @@ class TestExporter(object):
|
| _log.info(patch)
|
| return
|
|
|
| - remote_branch_name = self.local_wpt.create_branch_with_patch(message, patch)
|
| + remote_branch_name = self.local_wpt.create_branch_with_patch(message, patch, author)
|
|
|
| response_data = self.wpt_github.create_pr(
|
| remote_branch_name=remote_branch_name,
|
|
|