Index: PRESUBMIT.py |
diff --git a/PRESUBMIT.py b/PRESUBMIT.py |
index 1e6526f26ea9c9dca0f46179f948e5a14216afed..6a0dcbfcffd42bb197de0b12456214c694b32816 100644 |
--- a/PRESUBMIT.py |
+++ b/PRESUBMIT.py |
@@ -1030,7 +1030,7 @@ def _CheckUserActionUpdate(input_api, output_api): |
match = input_api.re.search(action_re, line) |
if match: |
for action_name in match.groups(): |
- name_pattern = r'\t%s\n' % action_name |
+ name_pattern = '\t%s\n' % action_name |
if name_pattern not in current_actions: |
return [output_api.PresubmitPromptWarning( |
'File %s line %d: %s is missing in ' |