diff options
author | Georg Brandl <georg@python.org> | 2014-03-04 08:05:40 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-03-04 08:05:40 +0100 |
commit | 27895fe85076d2f1b44e7d30387b3f459fc60281 (patch) | |
tree | bf3b1e2e30aa655698932cc2e5ede3d99ee1b998 /pygments/lexers/templates.py | |
parent | 7b8d8827e5d9ac003dd0d7a7e6f4101044034514 (diff) | |
download | pygments-27895fe85076d2f1b44e7d30387b3f459fc60281.tar.gz |
Remove duplicate mimetype.
Diffstat (limited to 'pygments/lexers/templates.py')
-rw-r--r-- | pygments/lexers/templates.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/templates.py b/pygments/lexers/templates.py index b6fdaa7e..72f81d63 100644 --- a/pygments/lexers/templates.py +++ b/pygments/lexers/templates.py @@ -1579,7 +1579,7 @@ class ColdfusionCFCLexer(DelegatingLexer): name = 'Coldfusion CFC' aliases = ['cfc'] filenames = ['*.cfc'] - mimetypes = ['application/x-coldfusion'] + mimetypes = [] def __init__(self, **options): super(ColdfusionCFCLexer, self).__init__(ColdfusionHtmlLexer, ColdfusionLexer, |