* src/GrampsDb/_WriteXML.py (strip_dict): Do not strip tab, LF, CR.

svn: r7390
This commit is contained in:
Alex Roitman
2006-10-11 03:44:09 +00:00
parent 525c779b0d
commit 13c3884aaa
2 changed files with 2 additions and 1 deletions

View File

@@ -73,7 +73,7 @@ except:
_xml_version = "1.1.3"
# table for skipping control chars from XML
strip_dict = dict.fromkeys(range(20))
strip_dict = dict.fromkeys(range(9)+range(12,20))
#-------------------------------------------------------------------------
#