| Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| index 4bb5a936abe567eb24f27512b992e0af0f0131ed..9d91ef4609ca97c9015facfe4b13b475f4cc91a0 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| @@ -374,7 +374,14 @@ class TestImporter(object):
|
| '--gerrit',
|
| '-m',
|
| description,
|
| - ] + ['--cc=' + email_address for email_address in directory_owners])
|
| + ] + self._cc_part(directory_owners))
|
| +
|
| + @staticmethod
|
| + def _cc_part(directory_owners):
|
| + cc_part = []
|
| + for owner_tuple in sorted(directory_owners):
|
| + cc_part.extend('--cc=' + owner for owner in owner_tuple)
|
| + return cc_part
|
|
|
| def get_directory_owners(self):
|
| """Returns a mapping of email addresses to owners of changed tests."""
|
|
|