summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES1
-rw-r--r--pygments/lexers/pypylog.py3
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index b0ae583e..5a996e16 100644
--- a/CHANGES
+++ b/CHANGES
@@ -12,6 +12,7 @@ Version 1.5
* Awk
* Fancy (#633)
+ * PyPy Log
Version 1.4
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
+ }