diff options
author | Georg Brandl <georg@python.org> | 2010-01-12 11:38:39 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-01-12 11:38:39 +0000 |
commit | 7e65d1167b6d5d378bc18caecee596fd699762c2 (patch) | |
tree | e6bec349e514867c4b04d1c31de826dfcd465063 /pygments/lexers | |
parent | b03d2002c42a82371355274e15ebd4580ad88467 (diff) | |
download | pygments-7e65d1167b6d5d378bc18caecee596fd699762c2.tar.gz |
Add .tac (twisted application files) as a Python extension.
Diffstat (limited to 'pygments/lexers')
-rw-r--r-- | pygments/lexers/agile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py index dafed5c9..8e9e02ee 100644 --- a/pygments/lexers/agile.py +++ b/pygments/lexers/agile.py @@ -41,7 +41,7 @@ class PythonLexer(RegexLexer): name = 'Python' aliases = ['python', 'py'] - filenames = ['*.py', '*.pyw', '*.sc', 'SConstruct', 'SConscript'] + filenames = ['*.py', '*.pyw', '*.sc', 'SConstruct', 'SConscript', '*.tac'] mimetypes = ['text/x-python', 'application/x-python'] tokens = { |