14 lines
362 B
Python
14 lines
362 B
Python
from ietf.submit.parsers.base import FileParser
|
|
|
|
|
|
class XMLParser(FileParser):
|
|
ext = 'xml'
|
|
mimetypes = ['application/xml', 'text/xml', ]
|
|
|
|
# If some error is found after this method invocation
|
|
# no other file parsing is recommended
|
|
def critical_parse(self):
|
|
super(XMLParser, self).critical_parse()
|
|
return self.parsed_info
|
|
|