From 94afdd970fe085de782221075956471dbc4fcb2a Mon Sep 17 00:00:00 2001 From: jvoisin Date: Tue, 15 May 2018 23:28:51 +0200 Subject: [PATCH] Don't mess with rdf for now --- src/harmless.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 class HarmlessParser(abstract.AbstractParser): """ This is the parser for filetypes that do not contain metadata. """ - mimetypes = {'application/xml', 'text/plain', 'application/rdf+xml'} + mimetypes = {'application/xml', 'text/plain'} def __init__(self, filename: str): self.filename = filename