summaryrefslogtreecommitdiff
path: root/src/harmless.py
diff options
context:
space:
mode:
authorjvoisin2018-05-15 23:28:51 +0200
committerjvoisin2018-05-15 23:28:51 +0200
commit94afdd970fe085de782221075956471dbc4fcb2a (patch)
tree60f6ea048b3f20dd176514c64a06d8423d5787b1 /src/harmless.py
parent7dd9e8bcdfe654c83d792cb93926de8633779e97 (diff)
Don't mess with rdf for now
Diffstat (limited to '')
-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