summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorthatch <devnull@localhost>2009-01-04 09:13:43 -0600
committerthatch <devnull@localhost>2009-01-04 09:13:43 -0600
commit41758408a798e2ac0a7e796cd40f53a907793091 (patch)
treec19daa3a94df81610efca40abadbae0b9d5f47f5 /scripts
parent6b17d2b85ec9cb15976f7738cdc03544f0f86e27 (diff)
downloadpygments-41758408a798e2ac0a7e796cd40f53a907793091.tar.gz
Fix syntax error in check_sources
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check_sources.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check_sources.py b/scripts/check_sources.py
index 8772bbee..35adc37b 100755
--- a/scripts/check_sources.py
+++ b/scripts/check_sources.py
@@ -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, see AUTHORS.
+copyright_re = re.compile(r'^ :copyright: Copyright 2006-2009 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)