| Index: third_party/PRESUBMIT.py
|
| diff --git a/third_party/PRESUBMIT.py b/third_party/PRESUBMIT.py
|
| index 88194cb0803b99c082918616bdc183d235f9ff3e..8f142b7e8825f4c2160a29e0bba1f3689e0d8ca3 100644
|
| --- a/third_party/PRESUBMIT.py
|
| +++ b/third_party/PRESUBMIT.py
|
| @@ -24,13 +24,13 @@ def _CheckThirdPartyReadmesUpdated(input_api, output_api):
|
| return errors
|
|
|
| name_pattern = input_api.re.compile(
|
| - r'^Name: [a-zA-Z0-9_\-\.]+\r?$',
|
| + r'^Name: [a-zA-Z0-9_\-\. ]+\r?$',
|
| input_api.re.IGNORECASE | input_api.re.MULTILINE)
|
| shortname_pattern = input_api.re.compile(
|
| r'^Short Name: [a-zA-Z0-9_\-\.]+\r?$',
|
| input_api.re.IGNORECASE | input_api.re.MULTILINE)
|
| version_pattern = input_api.re.compile(
|
| - r'^Version: [a-zA-Z0-9_\-\.]+\r?$',
|
| + r'^Version: [a-zA-Z0-9_\-\.:]+\r?$',
|
| input_api.re.IGNORECASE | input_api.re.MULTILINE)
|
| release_pattern = input_api.re.compile(
|
| r'Security Critical: (yes)|(no)\r?$',
|
|
|