diff options
Diffstat (limited to 'pygments/lexers/pypylog.py')
-rw-r--r-- | pygments/lexers/pypylog.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/lexers/pypylog.py b/pygments/lexers/pypylog.py index 3944beb5..da1004a6 100644 --- a/pygments/lexers/pypylog.py +++ b/pygments/lexers/pypylog.py @@ -11,6 +11,7 @@ class PyPyLogLexer(RegexLexer): name = "PyPy Log" aliases = ["pypylog", "pypy"] filenames = ["*.pypylog"] + mimetypes = ['application/x-pypylog'] tokens = { "root": [ @@ -56,4 +57,4 @@ class PyPyLogLexer(RegexLexer): (r"[\n\s]+", Text), (r"#.*?$", Comment), ], - }
\ No newline at end of file + } |