summaryrefslogtreecommitdiff
path: root/scripts/check_sources.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-01-01 14:13:04 +0100
committerGeorg Brandl <georg@python.org>2010-01-01 14:13:04 +0100
commit5ef2eb0fefdaaac99fcedf647e41d9e430572b38 (patch)
tree24051ff6981cfda949d13e75f70a942d8204e9ae /scripts/check_sources.py
parente05675bd33590f6173a174c930c8f391a94b562a (diff)
downloadpygments-5ef2eb0fefdaaac99fcedf647e41d9e430572b38.tar.gz
Happy new year!
Diffstat (limited to 'scripts/check_sources.py')
-rwxr-xr-xscripts/check_sources.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/check_sources.py b/scripts/check_sources.py
index 35adc37b..c98a4a55 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-2009 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2010 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 2006-2009 by the Pygments team, '
+copyright_re = re.compile(r'^ :copyright: Copyright 2006-2010 by the Pygments team, '
r'see AUTHORS\.$', re.UNICODE)
copyright_2_re = re.compile(r'^ %s(, %s)*[,.]$' %
(name_mail_re, name_mail_re), re.UNICODE)