| Index: presubmit_canned_checks.py
|
| diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py
|
| index 5c268ef087bbd89fa86ca64592be700ace693f97..79e030918bef92254281b482f52ec1a7f892236b 100644
|
| --- a/presubmit_canned_checks.py
|
| +++ b/presubmit_canned_checks.py
|
| @@ -237,7 +237,7 @@ def CheckChangeHasNoTabs(input_api, output_api, source_file_filter=None):
|
| def CheckChangeTodoHasOwner(input_api, output_api, source_file_filter=None):
|
| """Checks that the user didn't add TODO(name) without an owner."""
|
|
|
| - unowned_todo = input_api.re.compile('TO' + 'DO[^(]');
|
| + unowned_todo = input_api.re.compile('TO' + 'DO[^(]')
|
| for f, line_num, line in input_api.RightHandSideLines(source_file_filter):
|
| if unowned_todo.search(line):
|
| text = ('Found TO' + 'DO with no owner in %s, line %s' %
|
|
|