Commit c0b22b62 authored by ORD's avatar ORD

Merge pull request #92 from zerox1212/master

XML importer typo fix
parents 92e9e1ac d8549b0a
......@@ -161,7 +161,7 @@ class XMLParser(object):
mytext = val.text
if mytext is None: # support importing null strings
mytext = ""
mytext = val.text.replace('\n', '').replace('\r', '')
mytext = mytext.replace('\n', '').replace('\r', '')
# obj.value.append('b"{}"'.format(mytext))
obj.value = mytext
elif ntag == "ListOfExtensionObject":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment