| Index: Tools/Scripts/webkitpy/test/printer.py
|
| diff --git a/Tools/Scripts/webkitpy/test/printer.py b/Tools/Scripts/webkitpy/test/printer.py
|
| index f4a4b06acb575fce19e2765f46dded0ebda221bc..0cb02af10dc4cfd48f88fc19d578a5108578967e 100644
|
| --- a/Tools/Scripts/webkitpy/test/printer.py
|
| +++ b/Tools/Scripts/webkitpy/test/printer.py
|
| @@ -82,13 +82,8 @@ class Printer(object):
|
| # Messages can be selectively re-enabled for this script by updating
|
| # this method accordingly.
|
| def filter_records(record):
|
| - """Filter out autoinstall and non-third-party webkitpy messages."""
|
| - # FIXME: Figure out a way not to use strings here, for example by
|
| - # using syntax like webkitpy.test.__name__. We want to be
|
| - # sure not to import any non-Python 2.4 code, though, until
|
| - # after the version-checking code has executed.
|
| - if (record.name.startswith("webkitpy.common.system.autoinstall") or
|
| - record.name.startswith("webkitpy.test")):
|
| + """Filter out non-third-party webkitpy messages."""
|
| + if record.name.startswith("webkitpy.test"):
|
| return True
|
| if record.name.startswith("webkitpy"):
|
| return False
|
|
|