| 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 0f31e097b0cc9b91cd1f27350462ac8c2bc60362..38c479738740bf6060889f903f54c62860d162cc 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| @@ -232,7 +232,9 @@ class TestImporter(object):
|
| fullpath = self.filesystem.join(root, filename)
|
|
|
| mimetype = mimetypes.guess_type(fullpath)
|
| - if not 'html' in str(mimetype[0]) and not 'application/xhtml+xml' in str(mimetype[0]) and not 'application/xml' in str(mimetype[0]):
|
| + if ('html' not in str(mimetype[0]) and
|
| + 'application/xhtml+xml' not in str(mimetype[0]) and
|
| + 'application/xml' not in str(mimetype[0])):
|
| copy_list.append({'src': fullpath, 'dest': filename})
|
| continue
|
|
|
|
|