diff options
Diffstat (limited to 'scripts/check_sources.py')
-rwxr-xr-x | scripts/check_sources.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/check_sources.py b/scripts/check_sources.py index c98a4a55..798297b9 100755 --- a/scripts/check_sources.py +++ b/scripts/check_sources.py @@ -30,8 +30,8 @@ def checker(*suffixes, **kwds): name_mail_re = r'[\w ]+(<.*?>)?' -copyright_re = re.compile(r'^ :copyright: Copyright 2006-2010 by the Pygments team, ' - r'see AUTHORS\.$', re.UNICODE) +copyright_re = re.compile(r'^ :copyright: Copyright (?:\d{4}-)?2010 by ' + r'the Pygments team, see AUTHORS\.$', re.UNICODE) copyright_2_re = re.compile(r'^ %s(, %s)*[,.]$' % (name_mail_re, name_mail_re), re.UNICODE) coding_re = re.compile(r'coding[:=]\s*([-\w.]+)') |