diff options
author | Georg Brandl <georg@python.org> | 2012-02-05 12:58:02 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-02-05 12:58:02 +0100 |
commit | cecb6181930eb60cbbe26cd5b09d5047084faa97 (patch) | |
tree | 26420fc7589266fa3b28ba2c173e5cf6e6440165 /scripts/check_sources.py | |
parent | c7e77eb6a50245fbcea3849e7c65439156c61206 (diff) | |
download | pygments-cecb6181930eb60cbbe26cd5b09d5047084faa97.tar.gz |
Copyright update.
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 1816d2a7..e1c7544d 100755 --- a/scripts/check_sources.py +++ b/scripts/check_sources.py @@ -7,7 +7,7 @@ Make sure each Python file has a correct file header including copyright and license information. - :copyright: Copyright 2006-2011 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2012 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -30,7 +30,7 @@ def checker(*suffixes, **kwds): name_mail_re = r'[\w ]+(<.*?>)?' -copyright_re = re.compile(r'^ :copyright: Copyright (?:\d{4}-)?2010 by ' +copyright_re = re.compile(r'^ :copyright: Copyright 2006-2012 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) |