diff options
Diffstat (limited to 'usr/src/tools/onbld/Checks/Comments.py')
-rw-r--r-- | usr/src/tools/onbld/Checks/Comments.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/tools/onbld/Checks/Comments.py b/usr/src/tools/onbld/Checks/Comments.py index daf6aa47d9..5d6feb265a 100644 --- a/usr/src/tools/onbld/Checks/Comments.py +++ b/usr/src/tools/onbld/Checks/Comments.py @@ -1,4 +1,4 @@ -#! /usr/bin/python +#!ON_PYTHON # # CDDL HEADER START # @@ -38,7 +38,7 @@ import re, sys from onbld.Checks.DbLookups import BugDB -bugre = re.compile(r'^(\d{2,7}) (.*)$') +bugre = re.compile(r'^(\d{2,7}|[A-Z]{1,7}-\d{1,7}) (.*)$') def isBug(comment): |