| Index: presubmit_canned_checks.py | 
| diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py | 
| index 901a755ada410dfab7abd7868e37478dc06ad5ac..5b972d63ec171810744457c147fe848f6942aab8 100644 | 
| --- a/presubmit_canned_checks.py | 
| +++ b/presubmit_canned_checks.py | 
| @@ -350,7 +350,7 @@ def CheckTreeIsOpen(input_api, output_api, url, closed): | 
| connection = input_api.urllib2.urlopen(url) | 
| status = connection.read() | 
| connection.close() | 
| -    if input_api.re.match(closed, status): | 
| +    if input_api.re.match(closed, status, input_api.re.IGNORECASE): | 
| long_text = status + '\n' + url | 
| return [output_api.PresubmitError('The tree is closed dude!', | 
| long_text=long_text)] | 
|  |