* 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

@ -2,6 +2,7 @@
* src/gramps_main.py: use pngs for windows
2006-10-10 Alex Roitman <shura@gramps-project.org>
* src/GrampsDb/_WriteXML.py (strip_dict): Do not strip tab, LF, CR.
* src/GrampsDb/_GrampsBSDDB.py (gramps_upgrade_10,
gramps_upgrade_11): Properly use TXN.

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))
#-------------------------------------------------------------------------
#