| Index: appengine/findit/handlers/config.py
|
| diff --git a/appengine/findit/handlers/config.py b/appengine/findit/handlers/config.py
|
| index 753fb3953c5c02256d5aec8646bc9a61500fa05f..74883848bcde94072804cf7e2e4331020df83f12 100644
|
| --- a/appengine/findit/handlers/config.py
|
| +++ b/appengine/findit/handlers/config.py
|
| @@ -136,6 +136,9 @@ def _ValidateTrybotMapping(builders_to_trybots):
|
| if (not trybot_config.get('mastername') or
|
| not trybot_config.get('buildername')):
|
| return False
|
| + if (trybot_config.has_key('strict_regex') and
|
| + not isinstance(trybot_config['strict_regex'], bool)):
|
| + return False
|
| return True
|
|
|
|
|
|
|