diff options
author | gbrandl <devnull@localhost> | 2007-10-14 14:56:32 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-10-14 14:56:32 +0200 |
commit | 89e0a3f2c403cbaf350b882d4ac880d38f63c21c (patch) | |
tree | bbe5d230c0ef6a0b9a68a958135dad7d745d506b /pygments/lexers/agile.py | |
parent | 58597306a1241b46a4c4fe0b5f39b7fc96ebf185 (diff) | |
download | pygments-89e0a3f2c403cbaf350b882d4ac880d38f63c21c.tar.gz |
Add .sc to Python lexer extensions.
Diffstat (limited to 'pygments/lexers/agile.py')
-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 a909492c..d1dc0d30 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'] + filenames = ['*.py', '*.pyw', '*.sc'] # .sc is for SCons mimetypes = ['text/x-python', 'application/x-python'] tokens = { |