Skip to content
Snippets Groups Projects
Verified Commit 5b606f93 authored by georg's avatar georg
Browse files

fix typo

parent 156e81fb
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ def _parse_xml(full_path: str):
namespace_map = dict()
for _, (key, value) in ET.iterparse(full_path, ("start-ns", )):
# The ns[0-9]+ namespaces are reserved for interal usage, so
# The ns[0-9]+ namespaces are reserved for internal usage, so
# we have to use an other nomenclature.
if re.match('^ns[0-9]+$', key, re.I): # pragma: no cover
key = 'mat' + key[2:]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment