diff options
author | Georg Brandl <georg@python.org> | 2015-01-21 08:33:25 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2015-01-21 08:33:25 +0100 |
commit | 13705acbd57b936990c63a12de05ce29834b6afb (patch) | |
tree | dc558c826771ca88449887f4e698a99147de8911 /scripts/check_sources.py | |
parent | 3cff560fe7d84b1216fc6181c0a9cb0f2b3b9332 (diff) | |
download | pygments-13705acbd57b936990c63a12de05ce29834b6afb.tar.gz |
Copyright year 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 8e518cd4..4f5926f6 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-2014 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -36,7 +36,7 @@ def checker(*suffixes, **kwds): name_mail_re = r'[\w ]+(<.*?>)?' -copyright_re = re.compile(r'^ :copyright: Copyright 2006-2014 by ' +copyright_re = re.compile(r'^ :copyright: Copyright 2006-2015 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) |