Mercurial > hg-stable
changeset 27312:f925d492113a
check-config: escape period in regexp for inline comments
author | timeless <timeless@mozdev.org> |
---|---|
date | Tue, 08 Dec 2015 08:36:00 +0000 |
parents | 24a1c24fad6e |
children | 9d155accd8f1 |
files | contrib/check-config.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/check-config.py Tue Dec 08 09:09:01 2015 +0000 +++ b/contrib/check-config.py Tue Dec 08 08:36:00 2015 +0000 @@ -62,7 +62,7 @@ # look for ignore markers m = re.search(r'# (?:internal|experimental|deprecated|developer)' - ' config: (\S+.\S+)$', l) + ' config: (\S+\.\S+)$', l) if m: documented[m.group(1)] = 1