diff options
author | Pat Hawks <pat@pathawks.com> | 2013-08-01 20:47:24 -0400 |
---|---|---|
committer | Pat Hawks <pat@pathawks.com> | 2013-08-01 20:47:24 -0400 |
commit | ea8cb94d0455379ddba8a4fea0a028daa1c99df0 (patch) | |
tree | e0682f54262f0bd4fe87c9e5ecb52f76d6c50b73 /pygments/lexers/qbasic.py | |
parent | db0726fd5930b67f0294825171e60df564c2552b (diff) | |
parent | 4deedc99bade18770018d0d18a5664644a25f187 (diff) | |
download | pygments-ea8cb94d0455379ddba8a4fea0a028daa1c99df0.tar.gz |
Merged in pathawks/pygments-1/pathawks/mimetypes-is-plural-1375403583927 (pull request #1)
`mimetypes` Is plural
Diffstat (limited to 'pygments/lexers/qbasic.py')
-rw-r--r-- | pygments/lexers/qbasic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/qbasic.py b/pygments/lexers/qbasic.py index bfd6b301..c08725e8 100644 --- a/pygments/lexers/qbasic.py +++ b/pygments/lexers/qbasic.py @@ -25,7 +25,7 @@ class QBasicLexer(RegexLexer): name = 'QBasic' aliases = ['qbasic', 'basic'] filenames = ['*.BAS', '*.bas'] - mimetype = [] + mimetypes = [] declarations = ['DATA', 'LET'] |