summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/harmless.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/harmless.py b/src/harmless.py
index 9e7c1b4..fbc2897 100644
--- a/src/harmless.py
+++ b/src/harmless.py
@@ -3,7 +3,7 @@ from . import abstract
3 3
4class HarmlessParser(abstract.AbstractParser): 4class HarmlessParser(abstract.AbstractParser):
5 """ This is the parser for filetypes that do not contain metadata. """ 5 """ This is the parser for filetypes that do not contain metadata. """
6 mimetypes = {'application/xml', 'text/plain', 'application/rdf+xml'} 6 mimetypes = {'application/xml', 'text/plain'}
7 7
8 def __init__(self, filename: str): 8 def __init__(self, filename: str):
9 self.filename = filename 9 self.filename = filename