datatracker/ietf/submit/parsers/xml_parser.py
2015-07-22 21:35:44 +00:00

14 lines
396 B
Python

from ietf.submit.parsers.base import FileParser
class XMLParser(FileParser):
# If some error is found after this method invocation
# no other file parsing is recommended
def critical_parse(self):
super(XMLParser, self).critical_parse()
self.parse_filename_extension('xml')
self.parse_file_type('xml', 'application/xml')
return self.parsed_info